3

我正在尝试通过使用广播接收器获取电池信息并将其存储在数据库中。我宁愿只在我特别想要的时候才得到它,但我愿意保留一个仅包含运行记录的数据库。无论如何,问题是我的应用程序因此错误而崩溃:

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 方法中执行此操作。问题是,如果我将 this.batteryReceiver 替换为 null,我可以运行我的应用程序,但该应用程序什么也不做。在此应用程序的其他任何地方都不会调用或使用接收器。

如果这很重要,这就是我正在使用的内容:在有根 Galaxy s3 应用程序上的测试使用目标 lvl15 api min 11。

4

2 回答 2

3

您的 Main.java 的第 180 行中有一个不存在的资源。

我的猜测是,R.string.temp但由于您甚至没有发布文件的名称,所以只是:猜测。

我刚刚看到了麻烦:

tempText.setText(R.string.temp + temp);

文档允许将文本直接设置为残差。但是,通过将 temp 添加到该值,您更改了它并要求不存在的资源。

纠正它的一种方法是:

String resourceTemp = context.getString(R.string.temp);
tempText.setText(resourceTemp + " " + temp);
于 2013-04-11T00:04:44.877 回答
1

您将资源 id 添加到 temp 并因此更改 id,您应该更改为

tempText.setText(context.getString(R.string.temp) + temp);
于 2013-04-11T00:09:39.930 回答