我试图通过使用广播接收器获取电池信息并将其存储在数据库中。我更愿意只在我特别想要的时候才能得到它,但我愿意保留一个只运行记录的数据库。无论如何,问题是我的应用程序崩溃了这个错误:
java.lang.RuntimeException: Error receiving broadcast Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000010 (has extras) }
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:765)
at android.os.Handler.handleCallback(Handler.java:615)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4918)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1004)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:771)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x7f04006b
at android.content.res.Resources.getText(Resources.java:242)
at android.widget.TextView.setText(TextView.java:3773)
at com.Eddiecubed44.drunk.buddy.Main$2.onReceive(Main.java:180)
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:755)
当我说崩溃时,我的意思是崩溃和烧伤。每次我使用此代码运行时,我的手机都会自动重启。
我已经使用调试器并且没有发现错误。我在主活动类中创建了广播接收器,如下所示:
BroadcastReceiver batteryReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
int temp = -1;
TextView tempText;
tempText = (TextView)findViewById(R.id.mybatttemptxt);
temp = intent.getIntExtra(BatteryManager.EXTRA_TEMPERATURE, -1);
tempText.setText(R.string.temp + temp);
这是我注册广播接收器的方式。
this.registerReceiver(this.batteryReceiver, new IntentFilter(Intent.ACTION_BATTERY_CHANGED));
我在onStart方法中这样做。问题是,我可以运行我的应用程序,如果我用null替换this.batteryReceiver,但该应用程序什么都不做。此应用程序中的其他任何地方都不会调用或使用接收器。
如果重要的是我正在使用的东西: 测试生根星系s3 应用程序正在使用目标lvl15 api min 11.
答案 0 :(得分:3)
你的Main.java第180行中有一个不存在的资源。
我的猜测是R.string.temp
,但由于你还没有张贴文件名,所以就是这样:猜测。
我刚刚看到了麻烦:
tempText.setText(R.string.temp + temp);
documentation允许将文本直接设置为渣油。但是,通过向该值添加temp,您可以对其进行更改并要求不存在的资源。
纠正它的一种方法是:
String resourceTemp = context.getString(R.string.temp);
tempText.setText(resourceTemp + " " + temp);
答案 1 :(得分:1)
您向temp添加资源ID,从而更改ID,您应该更改为
tempText.setText(context.getString(R.string.temp) + temp);