1. 程式人生 > >在Android系統settings裡新增設定選項

在Android系統settings裡新增設定選項

目的:在通話設定選單下,新增一dect設定選單,裡面再新增一checkBOxPreference 
來使能硬體模組。 
------------------------- 
目前做的專案,需要在系統settings裡面新增一選項來使能硬體模組,裡面涉及到的preference知識,請網上了解,這裡記錄下方法。 


1,settings 應用一般在 目錄:\packages\apps\Settings,我們先找到通話設定的佈局位置,看看它在那個包路徑下,進入\packages\apps\Settings\res\xml,開啟settings.xml檔案: 
Java程式碼  收藏程式碼
  1. <com.android.settings.IconPreferenceScreen  
  2.     android:key="call_settings"  
  3.     settings:icon="@drawable/ic_settings_call"  
  4.     android:title="@string/call_settings_title">  
  5.     <intent  
  6.         android:action="android.intent.action.MAIN"  
  7.         android:targetPackage="com.android.phone"  
  8.         android:targetClass="com.android.phone.CallFeaturesSetting"
     />  
  9. </com.android.settings.IconPreferenceScreen>  


android:targetPackage="com.android.phone"  
android:targetClass="com.android.phone.CallFeaturesSetting"

targetPackage:表示包名,根據此我們可以找到通話設定的路徑。 
targetClass:表示此佈局檔案被那個類所引用,根據此類,我們可以知道在那個檔案裡面管理我們的通話設定功能。 
2.根據包名,我們可以看到在\packages\apps\Phone 目錄下,進入\res\xml目錄下 

找到通話佈局檔案:call_feature_setting.xml,根據類名,很容易找到佈局檔案。 
裡面內容如下: 
Java程式碼  收藏程式碼
  1. <PreferenceCategory android:key="button_misc_category_key"  
  2.         android:title="@string/other_settings"  
  3.         android:persistent="false" />  
  4. <!-- Dect settings -->  
  5.     <PreferenceScreen  
  6.         android:key="dect_settings"  
  7.         android:title="@string/dect_module_title"  
  8.         android:summary="@string/dect_module_title" >  
  9.         <intent  
  10.             android:action="android.intent.action.MAIN"  
  11.             android:targetPackage="com.android.phone"  
  12.             android:targetClass="com.android.phone.DectSettings" />              
  13.     </PreferenceScreen>  
  14.     <CheckBoxPreference  
  15.         android:key="button_auto_retry_key"  
  16.         android:title="@string/auto_retry_mode_title"  
  17.         android:persistent="false"  
  18.         android:summary="@string/auto_retry_mode_summary"/>  


Dect setting 就是新新增進入的設定選單,我們的原則儘量不大量修改原始碼,所以新增一個PreferenceScreen,新增一個類檔案來管理DECt選單選項。 

android:targetPackage="com.android.phone" 
android:targetClass="com.android.phone.DectSettings"

我們指明瞭包名,類名後,因這是個activity,所以我們需要到Phone目錄下修改 
AndroidManifest.xml檔案,指明啟動的activity的類名. 
Java程式碼  收藏程式碼
  1.       <activity android:name="CdmaCallOptions"  
  2.           android:label="@string/cdma_options">  
  3.           <intent-filter>  
  4.               <action android:name="android.intent.action.MAIN" />  
  5.           </intent-filter>  
  6.       </activity>  
  7. <!-- dect activity -->  
  8.       <activity android:name="DectSettings"  
  9.           android:label="@string/dect_module_title">  
  10.           <intent-filter>  
  11.               <action android:name="android.intent.action.MAIN" />  
  12.           </intent-filter>  
  13.       </activity>  

3.修改好後,我們必須在此activity裡新增preference佈局檔案。 
  在此目錄Phone\res\xml下,新增dect_settings.xml 
Java程式碼  收藏程式碼
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"  
  3.         android:title="@string/dect_module_title">  
  4.       <CheckBoxPreference  
  5.         android:key="button_dect_module_key"  
  6.         android:title="@string/dect_module_title"  
  7.         android:defaultValue="true"  
  8.         android:summaryOn="@string/dect_module_start"  
  9.         android:summaryOff="@string/dect_module_stop"  
  10.         />    
  11. </PreferenceScreen>  

好了,總體佈局已經完成 
4.在\packages\apps\Phone\src\com\android\phone目錄下 
新增DectSettings.java檔案 

載入佈局檔案:       
//dect xml 
addPreferencesFromResource(R.xml.dect_settings);
裡面涉及到的MidPhoneServce服務,是自己新增的,主要通過此服務的AIDL介面跟硬體打交道。想了解系統服務,請網上查詢資料。 

原始碼如下: 
Java程式碼  收藏程式碼
  1. package com.android.phone;  
  2. import android.content.DialogInterface;  
  3. import android.os.AsyncResult;  
  4. import android.os.Bundle;  
  5. import android.os.Handler;  
  6. import android.os.Message;  
  7. import android.preference.CheckBoxPreference;  
  8. import android.preference.Preference;  
  9. import android.preference.PreferenceActivity;  
  10. import android.preference.PreferenceScreen;  
  11. import android.content.SharedPreferences;  
  12. import android.content.SharedPreferences.Editor;  
  13. import android.content.pm.ActivityInfo;  
  14. import android.content.pm.PackageManager;  
  15. import android.content.pm.ResolveInfo;  
  16. import android.os.Bundle;  
  17. import android.os.Handler;  
  18. import android.util.Log;  
  19. import android.content.Context;  
  20. import com.android.phone.R;  
  21. import android.os.IMidPhoneService;  
  22. import android.os.RemoteException;  
  23. import android.os.ServiceManager;  
  24. import android.provider.Settings;  
  25. public class DectSettings extends PreferenceActivity {  
  26.     private static final String TAG = "DectSettings";  
  27.     private static final String BUTTON_DECT_KEY  = "button_dect_module_key";  
  28.     private CheckBoxPreference mButtonDect;  
  29.     public IMidPhoneService midphoneservice = null;  
  30.     @Override  
  31.     protected void onCreate(Bundle icicle) {  
  32.         super.onCreate(icicle);  
  33.             //dect xml  
  34.         addPreferencesFromResource(R.xml.dect_settings);  
  35.         mButtonDect = (CheckBoxPreference)findPreference(BUTTON_DECT_KEY);  
  36.         mButtonDect.setPersistent(false);  
  37.         if(mButtonDect != null) {  
  38.             int dect_state = Settings.System.getInt(  
  39.                 getContentResolver(),Settings.System.DECT_SAVED_STATE, 1);  
  40.             mButtonDect.setChecked( dect_state!= 0);  
  41.             Settings.System.putInt(getContentResolver(),  
  42.                         Settings.System.DECT_SAVED_STATE,dect_state);  
  43.             Log.e(TAG,"settings:------------->" + dect_state);  
  44.         }  
  45.     }  
  46.     @Override  
  47.     public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference) {  
  48.         if (preference == mButtonDect ) {  
  49.             int dect = mButtonDect.isChecked() ? 1 : 0;       
  50.             boolean state;  
  51.             if(dect == 1)  
  52.                 state = true;  
  53.             else  
  54.                 state = false;  
  55.             try{  
  56.                     midphoneservice = IMidPhoneService.Stub.asInterface(ServiceManager.getService("midphone"));  
  57.                     Settings.System.putInt(getContentResolver(),  
  58.                         Settings.System.DECT_SAVED_STATE,dect);  
  59.                     midphoneservice.setDectEnabled(state);  
  60.                     Log.e(TAG,"settings:------------->" + dect);  
  61.                 } catch (RemoteException e) {  
  62.                     e.printStackTrace();  
  63.                 }  
  64.             return true;  
  65.         }  
  66.         return false;  
  67.     }  
  68.   @Override  
  69.     protected void onResume() {  
  70.         super.onResume();  
  71.         if (mButtonDect != null) {  
  72.             mButtonDect.setChecked(Settings.System.getInt(  
  73.                 getContentResolver(),  
  74.                 Settings.System.DECT_SAVED_STATE, 1) != 0);  
  75.         }  
  76.     }  
  77. }  

5.編譯,燒錄。