我正在开发一个需要通过adb广播自定义意图“com.example.demo.action.LAUNCH”来启动应用的项目。
我的计划是静态注册一个广播接收器“LaunchAppReceiver”,它将在接收定制的意图时启动应用程序。
我通过调用
安装了.apkadb install -r <pakcageName>
然后我通过调用
发送了意图adb shell am broadcast -a com.example.demo.action.LAUNCH
但是,意图发送后没有任何反应。似乎广播接收器根本没有收到意图。在收到意图之前,我是否需要以某种方式实例化接收器?
注意:由于Android设备是远程的,我必须使用adb来处理安装和启动。
谢谢!
我宣布广播接收器如下
public class LaunchAppReceiver extends BroadcastReceiver{
public LaunchAppReceiver () {}
@Override
public void onReceive(Context context, Intent intent) {
Intent newIntent = new Intent(context, MainActivity.class);
newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(newIntent);
}
}
并在AndroidManifest.xml中静态注册。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.demo" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:enabled="true">
<receiver
android:name="com.example.demo.LaunchAppReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.example.demo.action.LAUNCH"/>
</intent-filter>
</receiver>
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>