如何设置始终显示的警报?

Posted

技术标签:

【中文标题】如何设置始终显示的警报?【英文标题】:How can I set up an alert that appears at all times? 【发布时间】:2014-09-29 12:36:34 【问题描述】:

现在,我只想在用户访问应用程序时获得某种电池状态指示。例如,如果设备已插入,则设备应显示正在充电及其所处的水平。如果设备已拔下,则不应显示任何内容。如果设备未充电且电池电量低,则应出现低电量指示。

我已经设置了大部分代码,但问题是,例如,如果我运行应用程序并且设备已插入,屏幕上会显示充电指示。如果我拔下设备,充电不再可见,但如果我重新插入设备,充电仍然不可见。当设备插入或拔出、电池电量过高或过低时,应始终显示电池警报。应始终显示信息的变化。

这是我的广播接收器:

  private BroadcastReceiver mBatInfoReceiver = new BroadcastReceiver()  

        @Override
        public void onReceive(Context arg0, Intent intent) 

            //Battery level
            int level = intent.getIntExtra("level", 0);

            //Plugged in Status
            int plugged = intent.getIntExtra(BatteryManager.EXTRA_PLUGGED, -1);

            //Battery Status
            int status = intent.getIntExtra(BatteryManager.EXTRA_STATUS, -1);

            //If the device is charging or contains a full status, it's charging
            boolean isCharging = status == BatteryManager.BATTERY_STATUS_CHARGING ||
                    status == BatteryManager.BATTERY_STATUS_FULL;

            //If the device isCharging and plugged in, then show that the battery is charging
            TextView batteryTextView = ((TextView) findViewById(R.id.charging));
            TextView batteryLowTextView = ((TextView) findViewById(R.id.low_battery));
            ImageView batteryLowImageView= ((ImageView) findViewById(R.id.low_battery_icon));
            ImageView batteryImageView =((ImageView) findViewById(R.id.charging_battery_icon));

            if (isCharging && plugged == BatteryManager.BATTERY_PLUGGED_AC || plugged == BatteryManager.BATTERY_PLUGGED_USB) 


                //Gets the 'last synced' string and sets to datetime of the last sync
                Resources resources = context.getResources();
                String chargingString = String.format(resources.getString(R.string.charging), level);

                //Dynamically sets the value of the battery level
                batteryLowTextView.setVisibility(TextView.INVISIBLE);
                batteryLowImageView.setVisibility(ImageView.INVISIBLE);
                batteryTextView.setText(chargingString + "%");

             else if (level < LOW_BATTERY_LEVEL && !isCharging) 

                Resources resources = context.getResources();
                String lowBatteryString = String.format(resources.getString(R.string.low_battery));

                batteryTextView.setVisibility(TextView.INVISIBLE);
                batteryImageView.setVisibility(ImageView.INVISIBLE);
                batteryLowTextView.setText(lowBatteryString);

             else if (!isCharging && level > LOW_BATTERY_LEVEL) 

                //do nothing
                batteryTextView.setVisibility(TextView.GONE);
                batteryImageView.setVisibility(ImageView.GONE);

            

        

    ;

在我的 OnCreate 方法中,我调用了

 //calls registerReceiver to receive the broadcast for the state of battery
            this.registerReceiver(this.mBatInfoReceiver,new
                    IntentFilter(Intent.ACTION_BATTERY_CHANGED));

所以,我想知道我做错了什么?是布尔人吗?

【问题讨论】:

不应该是if (isCharging &amp;&amp; (plugged == BatteryManager.BATTERY_PLUGGED_AC || plugged == BatteryManager.BATTERY_PLUGGED_USB))吗?如果 plugged == BatteryManager.BATTERY_PLUGGED_AC 评估为 false,您的 if 将失败。它甚至不会检查plugged == BatteryManager.BATTERY_PLUGGED_USB。因此,在 OR 操作数周围放置一个括号,看看这是否有助于解决您的问题。 【参考方案1】:
    您的if-then-else 逻辑有很多漏洞(并且有@Vikram 提到的问题)。这可能导致接收器最终什么都不做。尝试简化逻辑以消除所有漏洞。 更新文本视图时,您还必须记住首先使其(及其图像视图)可见。

这里是你的 if-then-else 逻辑的替代:

        if (isCharging) 

            //Gets the 'last synced' string and sets to datetime of the last sync
            Resources resources = context.getResources();
            String chargingString = String.format(resources.getString(R.string.charging), level);

            //Dynamically sets the value of the battery level
            batteryLowTextView.setVisibility(TextView.INVISIBLE);
            batteryLowImageView.setVisibility(ImageView.INVISIBLE);
            batteryTextView.setText(chargingString + "%");
            batteryTextView.setVisibility(TextView.VISIBLE);
            batteryImageView.setVisibility(ImageView.VISIBLE);

         else if (level <= LOW_BATTERY_LEVEL) 

            Resources resources = context.getResources();
            String lowBatteryString = String.format(resources.getString(R.string.low_battery));

            batteryTextView.setVisibility(TextView.INVISIBLE);
            batteryImageView.setVisibility(ImageView.INVISIBLE);
            batteryLowTextView.setText(lowBatteryString);
            batteryLowTextView.setVisibility(TextView.VISIBLE);
            batteryLowImageView.setVisibility(ImageView.VISIBLE);

         else 

            //show nothing
            batteryTextView.setVisibility(TextView.GONE);
            batteryImageView.setVisibility(ImageView.GONE);
            batteryLowTextView.setVisibility(TextView.GONE);
            batteryLowImageView.setVisibility(ImageView.GONE);
        

【讨论】:

感谢您的帮助。我没有意识到缺少括号,感谢您澄清可见性布尔值。不过我很好奇一件事,如果我关闭 AVD 上的交流电源,设备会自动进行无线充电吗?似乎是这样,但只是想确定一下。谢谢。【参考方案2】:

ANDisChargingBatteryManager.BATTERY_PLUGGED_AC在这里:

if (isCharging && plugged == BatteryManager.BATTERY_PLUGGED_AC || plugged == BatteryManager.BATTERY_PLUGGED_USB) 

您需要OR BatteryManager 控件和AND 结果与isCharging 类似:

if (isCharging && 
   (plugged == BatteryManager.BATTERY_PLUGGED_AC || plugged == BatteryManager.BATTERY_PLUGGED_USB))

如果您需要知道设备是插入 AC 还是 USB,您可以使用此方法。但是,该设备可以插入BATTERY_PLUGGED_WIRELESS。另一件事是,您的 isCharging 变量是否已经涵盖了您要查找的内容:

(plugged == BatteryManager.BATTERY_PLUGGED_AC || plugged == BatteryManager.BATTERY_PLUGGED_USB)

我强烈建议阅读this page 并调试以控制您操作的变量的值。

【讨论】:

不,它还没有覆盖插入状态。我通过运行 AVD 并在 AVD 中使用“电源关闭”进行了测试,充电显示仍在显示。我需要将插入状态添加到 if 语句中,以涵盖所有必要的情况。我可以将插入的无线添加到用例中以涵盖无线充电。感谢您的提示!

以上是关于如何设置始终显示的警报?的主要内容,如果未能解决你的问题,请参考以下文章

显示蜂窝数据已关闭警报

AFNetworking 2.0 可达性警报始终显示

取消之前设置的警报

如何在 ios 日历中的 EKEvent 中设置特定警报?

asp.net里面的javascript没有设置隐藏字段值

java 警报对话框(设置和显示列表)