欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android電池電量監(jiān)聽的示例代碼

 更新時間:2017年10月09日 08:56:44   作者:IT985博客  
本篇文章主要介紹了Android電池電量監(jiān)聽的示例代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

監(jiān)聽電池狀態(tài)只需要接收Intent.ACTION_BATTERY_CHANGED的廣播即可,當(dāng)電池狀態(tài)發(fā)生變化時會發(fā)出廣播。

1.運行狀態(tài)如下圖:

1.充電中的狀態(tài)

 

2.未充電時的狀態(tài)

 

2.實現(xiàn)代碼如下,各個狀態(tài)通過名字就很容易知道意思,BatteryManager類中定義了電池狀態(tài)。

public class MainActivity extends Activity { 
  private static final String TAG = "MainActivity"; 
   
  private TextView mTvVoltage; 
  private TextView mTvTemperature; 
  private TextView mTvLevel; 
  private TextView mTvStatus; 
  private TextView mTvHealth; 
  private TextView mTvTechnology; 
 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
     
    mTvVoltage = (TextView)findViewById(R.id.tv_voltage); 
    mTvTemperature = (TextView)findViewById(R.id.tv_temperature); 
    mTvLevel = (TextView)findViewById(R.id.tv_level); 
    mTvStatus = (TextView)findViewById(R.id.tv_status); 
    mTvHealth = (TextView)findViewById(R.id.tv_health); 
    mTvTechnology = (TextView)findViewById(R.id.tv_technology); 
     
    this.registerReceiver(this.mBatteryReceiver, new IntentFilter(  
        Intent.ACTION_BATTERY_CHANGED)); 
  } 
 
  @Override 
  public boolean onCreateOptionsMenu(Menu menu) { 
    // Inflate the menu; this adds items to the action bar if it is present. 
    getMenuInflater().inflate(R.menu.main, menu); 
    return true; 
  } 
 
  private BroadcastReceiver mBatteryReceiver = new BroadcastReceiver() {  
    @Override 
    public void onReceive(Context arg0, Intent arg1) {  
      int voltage=arg1.getIntExtra(BatteryManager.EXTRA_VOLTAGE, 0); 
      mTvVoltage.setText("電壓:" + voltage / 1000 + "." + voltage % 1000 + "V"); 
        
      int temperature=arg1.getIntExtra(BatteryManager.EXTRA_TEMPERATURE,0); 
      mTvTemperature.setText("溫度:" + temperature / 10 + "." + temperature % 10 + "℃"); 
      if (temperature >= 300) { 
        mTvTemperature.setTextColor(Color.RED); 
      } else { 
        mTvTemperature.setTextColor(Color.BLUE); 
      } 
       
      int level=arg1.getIntExtra(BatteryManager.EXTRA_LEVEL,0); 
      int scale=arg1.getIntExtra(BatteryManager.EXTRA_SCALE,0); 
      int levelPercent = (int)(((float)level / scale) * 100); 
      mTvLevel.setText("電量:" + levelPercent + "%"); 
      if (level <= 10) { 
        mTvLevel.setTextColor(Color.RED); 
      } else { 
        mTvLevel.setTextColor(Color.BLUE); 
      } 
        
      int status = arg1.getIntExtra(BatteryManager.EXTRA_STATUS, BatteryManager.BATTERY_STATUS_UNKNOWN); 
      String strStatus = "未知狀態(tài)";; 
      switch (status) { 
      case BatteryManager.BATTERY_STATUS_CHARGING: 
        strStatus = "充電中……"; 
        break; 
      case BatteryManager.BATTERY_STATUS_DISCHARGING: 
        strStatus = "放電中……"; 
        break; 
      case BatteryManager.BATTERY_STATUS_NOT_CHARGING: 
        strStatus = "未充電"; 
        break; 
      case BatteryManager.BATTERY_STATUS_FULL: 
        strStatus = "充電完成"; 
        break; 
      } 
      mTvStatus.setText("狀態(tài):" + strStatus); 
        
      int health = arg1.getIntExtra(BatteryManager.EXTRA_HEALTH, BatteryManager.BATTERY_HEALTH_UNKNOWN); 
      String strHealth = "未知 :(";; 
      switch (status) { 
      case BatteryManager.BATTERY_HEALTH_GOOD: 
        strHealth = "好 :)"; 
        break; 
      case BatteryManager.BATTERY_HEALTH_OVERHEAT: 
        strHealth = "過熱!"; 
        break; 
      case BatteryManager.BATTERY_HEALTH_DEAD: // 未充電時就會顯示此狀態(tài),這是什么鬼? 
        strHealth = "良好"; 
        break; 
      case BatteryManager.BATTERY_HEALTH_OVER_VOLTAGE: 
        strHealth = "電壓過高!"; 
        break; 
      case BatteryManager.BATTERY_HEALTH_UNSPECIFIED_FAILURE: 
        strHealth = "未知 :("; 
        break; 
      case BatteryManager.BATTERY_HEALTH_COLD: 
        strHealth = "過冷!"; 
        break; 
      } 
      mTvHealth.setText("健康狀況:" + strHealth); 
       
      String technology = arg1.getStringExtra(BatteryManager.EXTRA_TECHNOLOGY); 
      mTvTechnology.setText("電池技術(shù):" + technology); 
    } 
  }; 
}

3.Layout布局如下,很簡單只有幾個TextView:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
        xmlns:tools="http://schemas.android.com/tools" 
        android:layout_width="match_parent" 
        android:layout_height="match_parent" 
        android:paddingBottom="@dimen/activity_vertical_margin" 
        android:paddingLeft="@dimen/activity_horizontal_margin" 
        android:paddingRight="@dimen/activity_horizontal_margin" 
        android:paddingTop="@dimen/activity_vertical_margin" 
        tools:context=".MainActivity" > 
 
  <TextView android:id="@+id/tv_battery_status" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:textColor="#0000FF" 
       android:textStyle="bold" 
       android:text="@string/battery_status" /> 
 
  <LinearLayout android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:orientation="vertical" 
         android:layout_below="@id/tv_battery_status" > 
    <TextView android:id="@+id/tv_voltage" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" /> 
    <TextView android:id="@+id/tv_temperature" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" /> 
    <TextView android:id="@+id/tv_level" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" /> 
    <TextView android:id="@+id/tv_status"
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" /> 
    <TextView android:id="@+id/tv_health"
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" /> 
    <TextView android:id="@+id/tv_technology" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" /> 
    </LinearLayout> 
</RelativeLayout>

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • android中對文件加密解密的實現(xiàn)

    android中對文件加密解密的實現(xiàn)

    本文主要介紹了android中對文件加密解密的實現(xiàn),文件加密現(xiàn)在的應(yīng)用很廣,有需要的朋友可以了解一下。
    2016-10-10
  • Android實現(xiàn)關(guān)機重啟的方法分享

    Android實現(xiàn)關(guān)機重啟的方法分享

    這篇文章主要介紹了Android實現(xiàn)關(guān)機重啟的方法,需要的朋友可以參考下
    2014-02-02
  • Android Studio中通過CMake使用NDK并編譯自定義庫和添加預(yù)編譯庫

    Android Studio中通過CMake使用NDK并編譯自定義庫和添加預(yù)編譯庫

    這篇文章是基于Android Studio 3.01版本的,NDK是R16。本文重點給大家介紹Android Studio中通過CMake使用NDK并編譯自定義庫和添加預(yù)編譯庫的相關(guān)知識,感興趣的朋友一起看看吧
    2018-01-01
  • android異步任務(wù)設(shè)計思詳解(AsyncTask)

    android異步任務(wù)設(shè)計思詳解(AsyncTask)

    AsyncTask在Android十分常用,那為什么如此常用呢,不用行不行呢,內(nèi)部又是怎么實現(xiàn)的呢,為什么Java的API中沒有這個類呢,看完本文后,你將會知道答案
    2014-02-02
  • Android實現(xiàn)微信右側(cè)頂部下拉對話框

    Android實現(xiàn)微信右側(cè)頂部下拉對話框

    這篇文章主要為大家詳細(xì)介紹了Android實現(xiàn)微信右側(cè)頂部下拉對話框,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-12-12
  • Android圓形控件實現(xiàn)畫圓效果

    Android圓形控件實現(xiàn)畫圓效果

    這篇文章主要為大家詳細(xì)介紹了Android圓形控件實現(xiàn)畫圓效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-05-05
  • 解決Android中自定義DialogFragment解決寬度和高度問題

    解決Android中自定義DialogFragment解決寬度和高度問題

    Android中自定義DialogFragment解決寬度和高度問題但是我們很多時候想把DialogFragment的高度固定,那么我們需要設(shè)置DialogFragment的高度,在Fragment的onResume()聲明周期方法中設(shè)置window的寬高即可
    2017-12-12
  • Android百度地圖添加Marker失真問題的解決方案

    Android百度地圖添加Marker失真問題的解決方案

    本篇文章主要介紹了Android百度地圖添加Marker失真問題的解決方案,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-01-01
  • Android繪制文本與圖片及動效詳解

    Android繪制文本與圖片及動效詳解

    這篇文章主要介紹了Android繪制文本與圖片及動效方法流程,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧
    2022-12-12
  • 深入了解Android?IO的底層原理

    深入了解Android?IO的底層原理

    這篇文章主要介紹了深入了解Android?IO的底層原理,IO有緩沖與非緩沖?IO、直接與非直接?IO、阻塞與非阻塞?IO、同步與異步?IO等分類,具體詳情感興趣的小伙伴可以參考下面文章內(nèi)容
    2022-06-06

最新評論