Androidで電池残量と状態を取得する


109

バッテリーのレベルと状態(接続、放電、充電など)を取得するにはどうすればよいですか?開発者ドキュメントを調査したところ、BatteryManagerクラスが見つかりました。ただし、メソッドは含まれず、定数のみが含まれます。どうすれば使用できますか?


さらに調査したところ、BatteryManager.EXTRA_LEVELが見つかりました。
Mohit Deshpande 2010

このメソッドをチェックして、ここでバッテリーのパーセンテージを取得してくださいfreakyjolly.com/android-useful-methods-and-functions/#5method
Code Spy

回答:


124

バッテリー情報を取得する方法を説明するコードサンプルを次に示します。

要約すると、ACTION_BATTERY_CHANGEDインテントのブロードキャストレシーバーは動的にセットアップされます。マニフェストで宣言されたコンポーネントを介して受信できないため、明示的にで登録するだけContext.registerReceiver()です。

public class Main extends Activity {
  private TextView batteryTxt;
  private BroadcastReceiver mBatInfoReceiver = new BroadcastReceiver(){
    @Override
    public void onReceive(Context ctxt, Intent intent) {
      int level = intent.getIntExtra(BatteryManager.EXTRA_LEVEL, 0);
      batteryTxt.setText(String.valueOf(level) + "%");
    }
  };

  @Override
  public void onCreate(Bundle b) {
    super.onCreate(b);
    setContentView(R.layout.main);
    batteryTxt = (TextView) this.findViewById(R.id.batteryTxt);
    this.registerReceiver(this.mBatInfoReceiver, new IntentFilter(Intent.ACTION_BATTERY_CHANGED));
  }
}

2
Intent.ACTION_BATTERY_CHANGEDについて:これは、充電状態、レベル、およびバッテリーに関するその他の情報を含むスティッキーブロードキャストです。マニフェストで宣言されたコンポーネントを通じてこれを受け取ることはできません。Context.registerReceiver()で明示的に登録するだけです。
クラスAndroid、

2
@classAndroidよく、はい、それは答えで明示的に述べられています。
SirDarius、2015年

はい@SirDarius、それを他の人に知らせるだけです。私はあなたの答えを最初に賛成し、私がそれを見つけたときにこのコメントを入れました。:)
クラスAndroid

13
unRegisterReceiver onPauseまたはonDestroyを忘れないでください。
Dave Doga Oz

新しいキーワークでバッテリーマネージャーを初期化できません。なぜですか。
subhashchandru

102

API 21以降、現在のバッテリーレベルをパーセンテージとして取得するために以下を使用することが可能になりました:

BatteryManager bm = (BatteryManager)getSystemService(BATTERY_SERVICE);
int batLevel = bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY);

65

公式のandroid docsに基づいて、ヘルパーまたはUtilクラスでこのメソッドを使用して、現在のバッテリーのパーセンテージを取得できます。

public static int getBatteryPercentage(Context context) {

    if (Build.VERSION.SDK_INT >= 21) {

         BatteryManager bm = (BatteryManager) context.getSystemService(BATTERY_SERVICE);
         return bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY);

    } else {

         IntentFilter iFilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
         Intent batteryStatus = context.registerReceiver(null, iFilter);

         int level = batteryStatus != null ? batteryStatus.getIntExtra(BatteryManager.EXTRA_LEVEL, -1) : -1;
         int scale = batteryStatus != null ? batteryStatus.getIntExtra(BatteryManager.EXTRA_SCALE, -1) : -1;

         double batteryPct = level / (double) scale;

         return (int) (batteryPct * 100);
   }
}

公式ドキュメントの1つの間違い、代わりにdoubleを使用する必要がありますfloat int level = batteryStatus!= null?batteryStatus.getIntExtra(BatteryManager.EXTRA_LEVEL、-1):-1; int scale = batteryStatus!= null?batteryStatus.getIntExtra(BatteryManager.EXTRA_SCALE、-1):-1; double batteryPct =(double)level /(double)scale; intパーセント=(int)(batteryPct * 100D);
user2212515 2018

2
@ user2212515、公式ドキュメントに基づいて私の回答を編集していただけませんか?
ブルーウェア

@ライアン、私はAndroid v21以降をサポートするように私の回答を編集しました。チェックアウトしてください。
ブルーウェア

14

AndroidのBatteryManagerはスティッキーインテントを使用しているため、実際のBroadcastReceiverを登録する必要はありません。

IntentFilter ifilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
Intent batteryStatus = registerReceiver(null, ifilter);

int level = batteryStatus.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
int scale = batteryStatus.getIntExtra(BatteryManager.EXTRA_SCALE, -1);

float batteryPct = level / (float)scale;

return (int)(batteryPct*100);

これは、https: //developer.android.com/training/monitoring-device-state/battery-monitoring.htmlの公式ドキュメントにあります


7

これを使用して、残りの料金をパーセンテージで取得できます。

private void batteryLevel() {
        BroadcastReceiver batteryLevelReceiver = new BroadcastReceiver() {
            public void onReceive(Context context, Intent intent) {
                context.unregisterReceiver(this);
                int rawlevel = intent.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
                int scale = intent.getIntExtra(BatteryManager.EXTRA_SCALE, -1);
                int level = -1;
                if (rawlevel >= 0 && scale > 0) {
                    level = (rawlevel * 100) / scale;
                }
                batterLevel.setText("Battery Level Remaining: " + level + "%");
            }
        };
        IntentFilter batteryLevelFilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
        registerReceiver(batteryLevelReceiver, batteryLevelFilter);
    }

5

この機能は、許可や受信者を必要としない

void getBattery_percentage()
{
      IntentFilter ifilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
      Intent batteryStatus = getApplicationContext().registerReceiver(null, ifilter);
      int level = batteryStatus.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
      int scale = batteryStatus.getIntExtra(BatteryManager.EXTRA_SCALE, -1);
      float batteryPct = level / (float)scale;
      float p = batteryPct * 100;

      Log.d("Battery percentage",String.valueOf(Math.round(p)));
  }

4

バッテリーパーセンテージを確認するには、BatteryManagerを使用します。次のメソッドは、バッテリーパーセンテージを返します。

ソースリンク

public static float getBatteryLevel(Context context, Intent intent) {
    Intent batteryStatus = context.registerReceiver(null,
            new IntentFilter(Intent.ACTION_BATTERY_CHANGED));
    int batteryLevel = -1;
    int batteryScale = 1;
    if (batteryStatus != null) {
        batteryLevel = batteryStatus.getIntExtra(BatteryManager.EXTRA_LEVEL, batteryLevel);
        batteryScale = batteryStatus.getIntExtra(BatteryManager.EXTRA_SCALE, batteryScale);
    }
    return batteryLevel / (float) batteryScale * 100;
}

ちょっと私はこれを使用しました、そして時々結果は89時々その00.89小数点以下の移動が起こっていることです
Pemba Tamang

1
private void batteryLevel() {
        BroadcastReceiver batteryLevelReceiver = new BroadcastReceiver() {
            public void onReceive(Context context, Intent intent) {
                context.unregisterReceiver(this);
                int rawlevel = intent.getIntExtra("level", -1);
                int scale = intent.getIntExtra("scale", -1);
                int level = -1;
                if (rawlevel >= 0 && scale > 0) {
                    level = (rawlevel * 100) / scale;
                }
                mBtn.setText("Battery Level Remaining: " + level + "%");
            }
        };
        IntentFilter batteryLevelFilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
        registerReceiver(batteryLevelReceiver, batteryLevelFilter);
    }

1

公式ドキュメントの1つの間違い、floatではなくdoubleを使用する必要があります。0.53F * 100F = 52Fだから

int level = batteryStatus != null ? 
batteryStatus.getIntExtra(BatteryManager.EXTRA_LEVEL, -1) : -1; int scale = 
batteryStatus != null ? batteryStatus.getIntExtra(BatteryManager.EXTRA_SCALE, -1) : -1; 
double batteryPct = (double) level / (double) scale; int percent = (int) (batteryPct * 100D);

Math.round()を使用する代わりに、最終値をintにキャストする(したがって、10進数の0.x値をそこから取り除く)ことにより、0.53F-> 52Fの間違いが発生していませんか?
Robyer 2018年

0

他の回答では、バッテリーのステータスアクセスする方法(かき鳴らされているかどうか)については触れられていません。

IntentFilter ifilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
Intent batteryStatus = context.registerReceiver(null, ifilter);

// Are we charging / charged?
int status = batteryStatus.getIntExtra(BatteryManager.EXTRA_STATUS, -1);
boolean isCharging = status == BatteryManager.BATTERY_STATUS_CHARGING ||
                     status == BatteryManager.BATTERY_STATUS_FULL;

// How are we charging?
int chargePlug = batteryStatus.getIntExtra(BatteryManager.EXTRA_PLUGGED, -1);
boolean usbCharge = chargePlug == BatteryManager.BATTERY_PLUGGED_USB;
boolean acCharge = chargePlug == BatteryManager.BATTERY_PLUGGED_AC;
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.