我想在android.I worte代码中使用服务作为一个简单的
这是我的主要活动课程;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public class MReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Intent myIntent = new Intent(context, MService.class);
context.startService(myIntent);
}
}
public class MService extends Service
{
@Override
public IBinder onBind(Intent intent)
{
// TODO Auto-generated method stub
return null;
}
@Override
public void onCreate()
{
Log.i("onCreate", "Service onCreate");
}
}
}
那是我的xml文件;
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.service"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<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="com.example.service.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>
<service android:enabled="true" android:name=".MService" />
<receiver android:name=".MReceiver" android:enabled="true" android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
</application>
</manifest>
但是当我关闭程序崩溃后打开我的平板电脑时
错误是;
“错误打开跟踪文件” “无法实例化接收器com.example.service.MReceiver”
我该怎么办?请帮帮我。
答案 0 :(得分:0)
您可以在Activity ...
中将Receiver类声明为静态类public static class MReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Intent myIntent = new Intent(context, MService.class);
context.startService(myIntent);
}
}
或在单独的java文件中编写Receiver类...
如果你在MainActivity中写它, 把它写在像
这样的maifest中 <receiver name=".MainActivity$MReceiver" ....>
或如果它是一个单独的文件,请声明为
<receiver name=".MReceiver" ...>
(这里确保您的MReceiver类包名称和应用程序包名称相同)
答案 1 :(得分:-1)
在您的清单中,您已使用此声明<receiver>
:
android:exported="false"
那是错的。当你这样做时,你的接收器是私有的,所以Android框架在onReceive()
广播期间想要呼叫你的BOOT_COMPLETED
时无法实例化它。
只需从android:exported="false"
标记中删除<receiver>
,您就可以了。