Android設(shè)置選項(xiàng)開(kāi)發(fā)及自定義Preference樣式
一個(gè)完整的Android應(yīng)用程序都應(yīng)該提供選項(xiàng)(或者叫偏好設(shè)置等等)讓用戶對(duì)APP的表現(xiàn)形式能夠進(jìn)行設(shè)置,比如說(shuō)是否加入用戶體驗(yàn)計(jì)劃,或者是否自動(dòng)升級(jí)、定時(shí)提醒、開(kāi)啟自啟動(dòng)、后臺(tái)運(yùn)行等等。提供一個(gè)好的設(shè)置項(xiàng),會(huì)大大提升APP的用戶體驗(yàn)。為了完成這樣的功能,你不必從頭開(kāi)始寫Activity或者Fragment,因?yàn)锳ndroid已經(jīng)提供了實(shí)現(xiàn)這個(gè)功能的API,并且會(huì)自動(dòng)將用戶設(shè)置以鍵值對(duì)的形式存入SharedPreference(Android的四大存儲(chǔ)方式之一)中。在3.0以前的系統(tǒng),使用PreferenceActivity,這個(gè)類在api level 11(即Android 3.0)以后的api中丟棄,改用PreferenceFragment。兩者的使用方式及函數(shù)調(diào)用大同小異,可以根據(jù)app的目標(biāo)系統(tǒng)版本自己去衡量。本文主要說(shuō)明兩個(gè)問(wèn)題,層次較淺,重在總結(jié)和說(shuō)明基本用法,懂的直接飄過(guò)吧。
1. 為APP添加設(shè)置選項(xiàng)
Android平臺(tái)上,為應(yīng)用添加設(shè)置選項(xiàng)是個(gè)非常容易的事兒。這里以PreferenceFragment為例進(jìn)行演示,畢竟時(shí)代向前發(fā)展嘛。PreferenceFragment的父類是Fragment類,而Fragment對(duì)象必須嵌入到Activity中顯示出來(lái)。由此可以確定思路,為設(shè)置新建一個(gè)activity,然后將PreferenceFragment子類對(duì)象嵌入到其中,基本上就實(shí)現(xiàn)了選項(xiàng)設(shè)置,因?yàn)閿?shù)據(jù)的保存與更新自動(dòng)進(jìn)行。
思路非常簡(jiǎn)單,還是貼下主要代碼,順便整理下思路,幫助理解。
首先為設(shè)置選項(xiàng)設(shè)置新建一個(gè)Preference配置文件,跟layout文件也是XML文件格式,層次化清晰,注意它存儲(chǔ)在res/xml下,而不是res/layout。系統(tǒng)也提供了一些比較常用了設(shè)置選項(xiàng),比如PreferenceScreen,PreferenceCategory,CheckBoxPreference,EditTextPreferece,ListPreference等,如果需要你也可以很方便的實(shí)現(xiàn)自定義的Preference,下文將會(huì)介紹實(shí)現(xiàn)方法。現(xiàn)在新建一個(gè)Preference,命名settings.xml(更傳統(tǒng)的命名為preference.xml)。
復(fù)制代碼
1
2
3 xmlns:preference="http://schemas.android.com/apk/res/com.test.mytest"
4 android:title="設(shè)置" >
5
6
7 android:title="關(guān)于" >
8
9
10
11
12 preference:tipstring=">"
13 preference:titlestring="自定義測(cè)試" >
14
15 android:action="android.intent.action.VIEW"
16 android:data="http://www.baidu.com" />
17
18
19
20
21
22
23
24
25
26
27 android:key="setting_test"
28 android:title="測(cè)試一下" />
29
30
31
復(fù)制代碼
然后為設(shè)置選項(xiàng)新建一個(gè)Acitivity,因?yàn)榇颂嶱referenceFragment子類寫的非常簡(jiǎn)單,順便以內(nèi)部類實(shí)現(xiàn)了。
復(fù)制代碼
1 public class SettingsActivity extends Activity {
2
3 @Override
4 public void onCreate(Bundle savedInstanceState) {
5 super.onCreate(savedInstanceState);
6 setContentView(R.layout.settings);
7 setTitle("選項(xiàng)設(shè)置");
8 getFragmentManager().beginTransaction().replace(R.id.settings_content,
9 new PrefsFragment()).commit();
10 }
11
12 public static class PrefsFragment extends PreferenceFragment{
13
14 @Override
15 public void onCreate(Bundle savedInstanceState) {
16 super.onCreate(savedInstanceState);
17 addPreferencesFromResource(R.xml.settings);
18 }
19
20 }
21
22 }
復(fù)制代碼
最后就差用戶點(diǎn)擊你設(shè)計(jì)好的設(shè)置選項(xiàng)了,到了這里你應(yīng)該猜到了,打開(kāi)設(shè)置選項(xiàng)不過(guò)只是打開(kāi)一個(gè)Intent而已?;玖鞒叹偷竭@里,但是一個(gè)需要獲得大用戶量應(yīng)用的設(shè)置要比這個(gè)復(fù)雜得多,你可能還需要根據(jù)用戶的設(shè)置,立即對(duì)應(yīng)用的表現(xiàn)做出調(diào)整,可能要實(shí)現(xiàn)onPreferenceTreeClick(PreferenceScreen preferenceScreen,Preference prefence)。正如前文所述,剛接觸Preference,這里僅僅總結(jié)基本用法。
2. 在設(shè)置選項(xiàng)中使用自定義的Preference
Preference類直接繼承于Object類。在上文的settings.xml中,定義好幾個(gè)Preference,Preference只提供簡(jiǎn)單的文本顯示,而它的的子類CheckBoxPreference,SwitchPreference,EditTextPreference等則提供了較為復(fù)雜的UI展示,并可以保存用戶的設(shè)置數(shù)據(jù),一般來(lái)說(shuō),這些子類Preference對(duì)于應(yīng)用程序更加重要。關(guān)于如果使用這些子類對(duì)象,其實(shí)很簡(jiǎn)單,他們可以像UI控件在Layout中的用法類似的應(yīng)用在Preference定義的xml文件(上文定義的settings.xml)中,基本上使用了eclipse代碼提示功能就可以使用,這些用法基礎(chǔ)但不是本文的說(shuō)明重點(diǎn)。下面旨在介紹如何定義自己的Preference,先上圖看效果。
圖一 自定義Preference展示
圖一展示了Preference與自定義Preference樣式差別,你或許注意到第二項(xiàng)”自定義測(cè)試“與其他的Preference只有一個(gè)“>“符號(hào)的差別,其實(shí)這里包含了自定義一個(gè)Preference的完整步驟。說(shuō)道這里,順便說(shuō)下,其實(shí)自定義Preference與自定義控件的方法和套路幾乎一致。還是總結(jié)下基本步驟。
1) 定義屬性值 attr.xml
復(fù)制代碼
1
[!--empirenews.page--]2
3
4
5
6
7
復(fù)制代碼
2) 設(shè)計(jì)自定義Preference的布局 preferencewithtip.xml
1
2
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="horizontal"
6 android:paddingLeft="8dp"
7 android:paddingRight="15dp"
8 android:paddingTop="20dp"
9 android:paddingBottom="20dp">
10
11 android:id="@+id/prefs_title"
12 android:layout_width="0dp"
13 android:layout_height="wrap_content"
14 android:layout_gravity="left"
15 android:gravity="left|center_vertical"
16 android:textSize="18sp"
17 android:layout_weight="1"/>
18
19 android:id="@+id/prefs_tip"
20 android:layout_width="0dp"
21 android:layout_height="wrap_content"
22 android:layout_gravity="right"
23 android:gravity="right|center_vertical"
24 android:textSize="18sp"
25 android:layout_weight="1"/>
26
27
3) 繼承Preference,實(shí)現(xiàn)自己的Preference類 PreferenceWithTip
1 public class PreferenceWithTip extends Preference {
2 private static final String TAG = "PreferenceWithTip";
3 String pTitle = null;
4 String tipstring = null;
5
6 @SuppressLint("Recycle")
7 public PreferenceWithTip(Context context, AttributeSet attrs, int defStyle) {
8 super(context, attrs, defStyle);
9 // 獲取自定義參數(shù)
10 Log.i(TAG,"PreferenceWithTip invoked");
11 TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.PreferenceWithTip);
12 tipstring = ta.getString(R.styleable.PreferenceWithTip_tipstring);
13 pTitle = ta.getString(R.styleable.PreferenceWithTip_titlestring);
14 ta.recycle();
15 }
16
17 public PreferenceWithTip(Context context, AttributeSet attrs) {
18 this(context, attrs, 0);
19 }
20
21 @Override
22 protected void onBindView(View view) {
23 super.onBindView(view);
24 TextView pTitleView = (TextView)view.findViewById(R.id.prefs_title);
25 pTitleView.setText(pTitle);
26 TextView pTipView = (TextView)view.findViewById(R.id.prefs_tip);
27 pTipView.setText(tipstring);
28 }
29
30 @Override
31 protected View onCreateView(ViewGroup parent) {
32 return LayoutInflater.from(getContext()).inflate(R.layout.preferencewithtip,
33 parent, false);
34 }
35
36 //如需更新、保存數(shù)據(jù)則需要繼續(xù)編寫
37
38 }
4) 調(diào)用。調(diào)用代碼在文章的開(kāi)頭部分已經(jīng)貼出,主要代碼如下,preference是自定義的包名。
復(fù)制代碼
1
2 preference:tipstring=">"
3 preference:titlestring="自定義測(cè)試" >
4
5 android:action="android.intent.action.VIEW"
6 android:data="http://www.baidu.com" />
7
復(fù)制代碼
總結(jié)一下Preference的使用還是比較簡(jiǎn)單的,自定義Preference也比較方便。但是要設(shè)計(jì)出一個(gè)漂亮的、人性化的Preference還是不那么容易,但這些都是提高用戶體驗(yàn)的途徑,值得進(jìn)一步挖掘。