android 4.2 系統以後的飛航模式,android4.2

來源:互聯網
上載者:User

android 4.2 系統以後的飛航模式,android4.2

Android 4.2 之後 系統不予許第三方軟體去設定飛航模式,除非你的app是系統應用,得到了root許可權

//擷取當前的飛航模式狀態  需要根據不同的Android版本進行修改@SuppressWarnings("deprecation")public boolean isAirplaneModeOn()  {  //4.2以下     if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1)      {         return Settings.System.getInt(getContentResolver(),                  Settings.System.AIRPLANE_MODE_ON, 0) != 0;               }      else //4.2或4.2以上     {         return Settings.Global.getInt(getContentResolver(),                  Settings.Global.AIRPLANE_MODE_ON, 0) != 0;     }     }

  

//設定飛航模式@SuppressWarnings("deprecation")public void setAirplaneModeOn(boolean isEnable)   {    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1)      {  Settings.System.putInt(getContentResolver(),                            Settings.System.AIRPLANE_MODE_ON,isEnable ? 1:0);       }  else //4.2或4.2以上      {  Settings.Global.putInt(getContentResolver(), Global.AIRPLANE_MODE_ON, isEnable? 1 : 0);       }    Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);    intent.putExtra("state", isEnable);    sendBroadcast(intent); }  

  

  需要注意的是,在4.2上其實App是沒有許可權修改Setting.Global的,解決辦法是把你的App放到系統的system/app目錄下,然後install。這樣一來,App成為system app,可以獲得寫Setting.Global的許可權。。

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.