假设当前应用名为myapplication,包名com.example.myapplication; 被调用的应用名为myapplication2,包名com.example.myapplication2 Android 版本:6.0
一、intent调用activity 使用示例:
Intent intent = new Intent();
intent.setAction("com.example.myapplication2.Activity");
context.startActivity(intent);
在myapplication2的AndroidManifest.xml中需如下配置:
<activity android:name=".Activity4"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.example.myapplication2.Activity4" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
注意:1.其中enabled和exported可以默认不写,但不能配置为false。category配置中必须有android:name="android.intent.category.DEFAULT"这一配置,当然还可以添加其他值的category配置。 2.有些资料说intent要加上intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK)否则会报异常,本人测试时未添加该Flag可以正常使用,也许Android版本不一致,以后再研究。 3.在intent中putExtra()一些额外的参数也是可以的。
二、intent调用Service 使用示例:
Intent intent = new Intent();
intent.setAction("com.example.myapplication2.TestService");
intent.setPackage("com.example.myapplication2");//隐式启动必须加包名
startService(intent);
在myapplication2的AndroidManifest.xml中需如下配置:
<service android:name=".TestService">
<intent-filter>
<action android:name="com.example.myapplication2.TestService" />
</intent-filter>
</service>
注意:1.其中enabled和exported可以默认不写,但不能配置为false。 2.隐式启动必须加包名intent.setPackage(“xxx”)
三、intent调用BroadcastReceiver 使用示例:
Intent intent = new Intent();
intent.setAction("com.example.myapplication2.TestReceiver");
sendBroadcast(intent);
在myapplication2的AndroidManifest.xml中需如下配置:
<receiver android:name=".TestReceiver">
<intent-filter>
<action android:name="com.example.myapplication2.TestReceiver"/>
</intent-filter>
</receiver>
广播的使用比较简单,与调用本应用的广播相同。
一点愚见,如有不妥,还请轻喷_
|