我写了一个样本来学习BroadcastReceiver ..但是当我重新启动手机时,应用程序崩溃了。这是我的源代码和manifest.xml:
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public class BootCompleteReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context,"Boot Complete",Toast.LENGTH_LONG).show();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.boot"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<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>
<receiver android:name=".BootCompleteReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>
答案 0 :(得分:1)
您没有名为com.example.boot.BootCompleteReceiver
的班级,至少基于您在答案中显示的代码。
虽然您有一个名为BootCompleteReceiver
的课程:
这是MainActivity
的内部类,因此BootCompleteReceiver
未命名为com.example.boot.BootCompleteReceiver
这是MainActivity
(无static
个关键字)的常规内部类,因此Android无论如何都无法创建它的实例,即使您在清单中有正确的名称
将BootCompleteReceiver
移动到其自己的.java
文件中的常规独立Java类,或将其public static class
置于MainActivity
内。在后一种情况下,清单条目的完全限定类名称为com.example.boot.MainActivity$BootCompleteReceiver
。