共享首选项(shared preferences)

作者:追风剑情 发布于:2015-8-8 13:30 分类:Android

用来保存小块数据的轻量经的机制。

一、新建一个xml文件 res\xml\myapppreferences.xml

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <PreferenceScreen
  3. xmlns:android="http://schemas.android.com/apk/res/android">
  4. <PreferenceCategory android:title="Category 1">
  5. <CheckBoxPreference
  6. android:title="Checkbox"
  7. android:defaultValue="false"
  8. android:summary="True or False"
  9. android:key="checkboxPref">
  10. </CheckBoxPreference>
  11. </PreferenceCategory>
  12. <PreferenceCategory android:title="Category 2">
  13. <EditTextPreference
  14. android:summary="Enter a string"
  15. android:defaultValue="[Enter a string here]"
  16. android:title="Edit Text"
  17. android:key="editTextPref" />
  18. <RingtonePreference
  19. android:summary="Select a ringtone"
  20. android:title="Ringtones"
  21. android:key="ringtonePref" />
  22. <PreferenceScreen
  23. android:title="Second Preference Screen"
  24. android:summary="Click here to go to the second Preference Screen"
  25. android:key="secondPrefScreenPref" >
  26. <EditTextPreference
  27. android:summary="Enter a string"
  28. android:title="Edit Text (second Screen)"
  29. android:key="secondEditTextPref"/>
  30. </PreferenceScreen>
  31. </PreferenceCategory>
  32. </PreferenceScreen>

二、创建活动AppPreferenceActivity

  1. package com.example.androidtest;
  2.  
  3. import android.os.Bundle;
  4. import android.preference.PreferenceActivity;
  5. import android.preference.PreferenceManager;
  6.  
  7. public class AppPreferenceActivity extends PreferenceActivity {
  8.  
  9. @Override
  10. protected void onCreate(Bundle savedInstanceState) {
  11. super.onCreate(savedInstanceState);
  12. //首选项默认名称: <PackageName>_preferences
  13. //修改首选项文件的默认名称
  14. //PreferenceManager prefMgr = getPreferenceManager();
  15. //prefMgr.setSharedPreferencesName("appPreferences");
  16. //---load the preferences from an XML file---
  17. addPreferencesFromResource(R.xml.myapppreferences);
  18. }
  19. }

三、创建活动UsingPreferencesActivity

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <Button
  9. android:id="@+id/btnPreferences"
  10. android:text="Load Preferences Screen"
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content"
  13. android:onClick="onClickLoad" />
  14. <Button
  15. android:id="@+id/btnDisplayValues"
  16. android:text="Display Preferences Values"
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"
  19. android:onClick="onClickDisplay" />
  20. <EditText
  21. android:id="@+id/txtString"
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"/>
  24. <Button
  25. android:id="@+id/btnModifyValues"
  26. android:text="Modify Preferences Screen"
  27. android:layout_width="fill_parent"
  28. android:layout_height="wrap_content"
  29. android:onClick="onClickModify" />
  30. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.content.Intent;
  5. import android.content.SharedPreferences;
  6. import android.os.Bundle;
  7. import android.view.View;
  8. import android.widget.EditText;
  9. import android.widget.Toast;
  10.  
  11. public class UsingPreferencesActivity extends Activity {
  12.  
  13. @Override
  14. protected void onCreate(Bundle savedInstanceState) {
  15. super.onCreate(savedInstanceState);
  16. setContentView(R.layout.activity_using_preferences);
  17. }
  18. public void onClickLoad(View view)
  19. {
  20. Intent i = new Intent(this, AppPreferenceActivity.class);
  21. startActivity(i);
  22. }
  23. public void onClickDisplay(View view)
  24. {
  25. SharedPreferences appPrefs = getSharedPreferences("com.example.androidtest_preferences", MODE_PRIVATE);
  26. DisplayText(appPrefs.getString("editTextPref", ""));
  27. }
  28. public void onClickModify(View view)
  29. {
  30. String text = ((EditText)findViewById(R.id.txtString)).getText().toString();
  31. //默认保存首选项的xml文件保存在<PackageName>_preferences中。
  32. //MODE_PRIVATE : 表示只有创建首选项文件的应用程序能够打开首选项文件。
  33. SharedPreferences appPrefs = getSharedPreferences("com.example.androidtest_preferences", MODE_PRIVATE);
  34. SharedPreferences.Editor prefsEditor = appPrefs.edit();
  35. prefsEditor.putString("editTextPref", text);
  36. prefsEditor.commit();//保存修改
  37. }
  38. private void DisplayText(String str)
  39. {
  40. Toast.makeText(getBaseContext(), str, Toast.LENGTH_LONG).show();
  41. }
  42. }

运行效果

11111.png2222.png3333.png

444.png5555.png6666.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号