Android使用相机照相以及对照片的裁剪 博客

import android.app.Activity; import android.content.Intent; import android.graphics.Bitmap; import android

y2de 2012-10-29   2897   0

你的Android应用完全不需要那么多的权限 经验

对吗?下面的代码就是你如果拨打电话的,对吧? Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("1234567890"))

jopen 2015-02-04   13568   0

Android极速开发之发送短信 经验

r)){ Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.parse("smsto:"+phoneNumber)); intent.putExtra("sms_body"

CasPillinge 2016-10-30   5617   0

android一个应用的activity调用另一个应用的activity 经验

android:label="@string/app_name" > <intent-filter>

jopen 2016-01-18   25324   0

Android 应用程序的快捷方式 代码段

UNINSTALL_SHORTCUT" /> //为程序创建桌面快捷方式 Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");

mmp7 2015-04-23   1276   0
Java  

在一个apk中调用另外一个apk中的activity 经验

_name" >     这个是放在主activity里边 <intent-filter> intent-filter>

jopen 2016-01-18   6563   0
P20

  Android NFC API Reference (官方,中文) 文档

对数据进行适当的分类,并启动对该类数据感兴趣的应用程序。想要处理被扫描到NFC标签的应用程序会声明一个Intent过滤器,并请求处理数据。  Android Beam™ 功能允许设备把一个NDEF消息推送到物

幽灵草 2013-04-01   1015   0

Android监听应用程序安装和卸载 代码段

android.content.Context; import android.content.Intent; public class BootReceiver extends BroadcastReceiver{

b5pp 2015-03-19   1727   0
Android  

Android 监听应用的安装与卸载的 广播 代码段

android.content.Context; import android.content.Intent; import android.content.pm.PackageManager; import

cp5m 2015-04-23   917   0
Java  

滴滴插件化方案 VirtualApk 源码解析 经验

return; } // test Activity and Service Intent intent = new Intent(); intent.setClassName(pkg, "com.didi.virtualapk

ChelseaSnip 2017-07-26   21897   0

Android学习笔记之广播机制(1) 经验

广播接收者(BroadcastReceiver)用于异步接收广播Intent,广播Intent的发送是通过调用Context.sendBroadcast()、Context.sendOrderedBroadcast()或者Context

fmms 2012-01-31   33376   0

Android开机自启动程序 经验

内容为ACTION_BOOT_COMPLETED,它的字 符串常量表示为 android.intent.action.BOOT_COMPLETED。只要在程序中“捕捉”到这个消息,再启动之 即

jopen 2013-03-14   27622   0

Android开发之实现锁屏功能 代码段

android:label="@string/app_name" > <intent-filter>

bbw3 2015-03-20   2398   0
Java  

Android鬼点子-Activity的隐式调用 经验

式调用很简单,这里主要介绍一下隐式调用。一个Intent原则上只能是显式或者隐式,当它同时是显式和隐式的时候,以显式调用为主。 隐式调用时Intent通过匹配IntentFilter里面所设置的信

AWXTyl 2016-11-01   21807   0

Android中截图功能 经验

import android.app.Activity; import android.content.Intent; import android.graphics.Bitmap; import android

jopen 2013-10-22   27022   0

Android的Notifications的例子demo 经验

getSystemService(Context.ALARM_SERVICE); Intent intent = new Intent("android.alarm.demo.action"); PendingIntent

openkk 2012-08-02   34012   0

Android实现一键锁屏 经验

android.content.ComponentName; import android.content.Intent; import android.net.Uri; import android.os.Bundle;

mip33 2015-04-20   47039   0

Android push Service Notification 经验

getSystemService(Context.ALARM_SERVICE);     Intent intent = new Intent("android.alarm.demo.action");     PendingIntent

mark0614 2012-08-07   44621   0

在Android中实现截图功能 经验

import android.app.Activity; import android.content.Intent; import android.graphics.Bitmap; import android

jopen 2014-08-28   58739   0
1 2 3 4 5 6 7 8 9 10