当我打开Android设备时,我正在尝试启动我的应用程序。目前我有一个BroadcastReciever类和一个Service类,但是当我重启设备时,应用程序似乎没有启动。
我的BroadCast接收器类
public class Bootup extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equalsIgnoreCase(Intent.ACTION_BOOT_COMPLETED)) {
Toast.makeText(context, "Reboot completed! Starting your app!!!.", Toast.LENGTH_LONG).show();
Intent i = new Intent(context, AutoStart.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startService(i);
}
}
}
我的服务类
public class AutoStart extends Service {
@Override
public void onCreate() {
super.onCreate();
Toast.makeText(this, "Service Started", Toast.LENGTH_LONG).show();
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
}
我的清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test"
android:sharedUserId="android.uid.system">
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver
android:name=".Bootup"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<service android:name=".AutoStart">
<intent-filter>
<action android:name="com.example.test.AutoStart"></action>
</intent-filter>
</service>
<activity
android:name=".MyActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Result"
android:label="@string/title_activity_result"
android:parentActivityName=".MyActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.test.MyActivity" />
</activity>
<service
android:name=".functionality"
android:enabled="true" />
</application>
</manifest>
有人能指出我正确的方向吗?我不确定我做错了什么。
答案 0 :(得分:2)
您的应用程序需要在启动接收器开始工作之前至少手动运行一次,启动意图可能会在相当长的一段时间后发送,甚至可能被其他应用程序截获并杀死。我遇到了很少有第三方短信应用的行为。
答案 1 :(得分:0)
我对此并不完全确定,但请尝试从android:exported="false"
删除BootBroadcastReceiver
。 android:exported="false"
表示没有其他应用可以调用它,系统就像这里的应用一样。
答案 2 :(得分:0)
尝试使用context.startActivity(i);
代替context.startService(i);
。
答案 3 :(得分:0)
您应该在BroadCast接收器类中更正此行:
使用:context.startActivity(i);
而不是:context.startService(i);