如何在 Android 中找到设备的电源连接情况?


此示例演示如何在 Android 中查找设备电源连接情况。

步骤 1 − 在 Android Studio 中创建新项目,转到文件 ⇒ 新项目,填写所有必需详细信息以创建新项目。

步骤 2 − 将以下代码添加到 res/layout/activity_main.xml。

<?xml version = "1.0" encoding = "utf-8"?>
<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
   xmlns:app = "http://schemas.android.com/apk/res-auto"
   xmlns:tools = "http://schemas.android.com/tools"
   android:layout_width = "match_parent"
   android:gravity = "center"
   android:layout_height = "match_parent"
   tools:context = ".MainActivity">
   <TextView
      android:id = "@+id/text"
      android:textSize = "30sp"
      android:layout_width = "match_parent"
      android:layout_height = "match_parent" />
</LinearLayout>

在以上代码中,我们取文本视图来显示设备电源状态。

步骤 3 − 将以下代码添加到 src/MainActivity.java

package com.example.myapplication;
import android.annotation.SuppressLint;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.os.BatteryManager;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.widget.TextView;
import android.widget.Toast;
import static android.os.BatteryManager.ACTION_CHARGING;
public class MainActivity extends AppCompatActivity {
   TextView textView;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      textView = findViewById(R.id.text);
   }
   @Override
   protected void onStop() {
      super.onStop();
      MainActivity.this.unregisterReceiver(mMessageReceiver);
   }
   @Override
   protected void onResume() {
      super.onResume();
      MainActivity.this.registerReceiver(mMessageReceiver, new     IntentFilter(Intent.ACTION_POWER_CONNECTED));
   }
   private BroadcastReceiver mMessageReceiver = new BroadcastReceiver() {
      @Override
      public void onReceive(Context context, Intent intent) {
         textView.setText("Device power is connected");
      }
   };
}

让我们尝试运行你的应用程序。我假设你已将你的 Android 移动设备与电脑连接。要从 Android Studio 运行该应用程序,打开一个项目的活动文件,并单击工具栏上的运行图标  。选择你的移动设备作为选项,然后检查你的移动设备,它将显示你的默认屏幕 –

单击 此处 下载项目代码

更新于:2019 年 7 月 30 日

328 次浏览

开启您的 职业

完成课程获得认证

开始
广告