返回顶部
首页 > 资讯 > 移动开发 >Android中Fragment子类及其PreferenceFragment的创建过程演示
  • 781
分享到

Android中Fragment子类及其PreferenceFragment的创建过程演示

fragmentAndroid 2022-06-06 08:06:51 781人浏览 薄情痞子
摘要

Fragment创建方式 Fragment有两种使用方式:静态方式 和 动态方式。 1. 静态方式 第一步:先定义一个Fragment子类。 public class Ex

Fragment创建方式
Fragment有两种使用方式:静态方式 和 动态方式。
1. 静态方式
第一步:先定义一个Fragment子类。


public class ExampleFragment extends Fragment {
  @Override
  public View onCreateView(LayoutInflater inflater, ViewGroup container, 
      Bundle savedInstanceState) {
    return inflater.inflate(R.layout.example_fragment, container, false);
  }  
}

说明:ExampleFragment是Fragment的子类,它的布局定义是example_fragment.xml文件。
第二步:定义Fragment子类对应的布局文件。


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="horizontal" >
  <EditText android:id="@+id/edit_message"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:hint="@string/edit_message" />
  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_send"
    android:onClick="sendMessage" />
</LinearLayout>

说明:上面是example_fragment.xml的内容。
第三步:在需要用到该Fragment的Activity对应的布局中使用该Fragment。
下面是引用Fragment的Activity的代码:


public class FragmentLayoutTest extends Activity
{
  
  @Override
  public void onCreate(Bundle savedInstanceState)
  {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main); 
  } 
}

下面是main.xml的内容:


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
  <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/fragment_intro"
    />
  <fragment android:name="com.skw.fragmentlayouttest.ExampleFragment"
    android:id="@+id/frag_example"
    android:layout_weight="1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
</LinearLayout>

说明:在该布局文件中通过调用了先前自定义的ExampleFragment。
点击查看:静态方式的完整源码
2. 动态方式
重复"上面的第一步和第二步",实现一个Fragment子类。
第三步:在需要用到该Fragment的Activity对应的布局中使用定义一个FrameLayout。


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
  <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/fragment_intro"
    />
  <FrameLayout
    android:id="@+id/frag_example"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
</LinearLayout>

第四步:在Activity中将Fragment填充到FrameLayout中。


public class FragmentLayoutTest extends Activity {
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    // 获取FragmentManager
    FragmentManager fragmentManager = getFragmentManager();
    // 获取FragmentTransaction    
    FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
    // 获取ExampleFragment
    ExampleFragment fragment = new ExampleFragment();
    // 将fragment添加到容器frag_example中
    fragmentTransaction.add(R.id.frag_example, fragment);
    fragmentTransaction.commit();
  }
}

PreferenceFragment使用说明
1. 创建配置文件
新建res/xml/preferences.xml,内容如下:


<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
  <PreferenceCateGory
    android:title="PreferenceCategory A">
    <!-- 
     (01) android:key是Preferece的id
     (02) android:title是Preferece的大标题
     (03) android:summary是Preferece的小标题
     -->
    <CheckBoxPreference
      android:key="checkbox_preference"
      android:title="title_checkbox_preference"
      android:summary="summary_checkbox_preference" />
  </PreferenceCategory>
  <PreferenceCategory
    android:title="PreferenceCategory B">
    <!-- 
     android:dialogTitle是对话框的标题
     android:defaultValue是默认值
     -->
    <EditTextPreference
      android:key="edittext_preference"
      android:title="title_edittext_preference"
      android:summary="null" 
      android:dialogTitle="dialog_title_edittext_preference"
      android:defaultValue="null" />
    <!-- 
     android:entries是列表中各项的说明
     android:entryValues是列表中各项的值
     -->
    <ListPreference 
      android:key="list_preference" 
      android:dialogTitle="Choose font" 
      android:entries="@array/pref_font_types" 
      android:entryValues="@array/pref_font_types_values" 
      android:summary="sans" 
      android:title="Font" 
      android:defaultValue="sans"/> 
  </PreferenceCategory>
  <PreferenceCategory
    android:title="PreferenceCategory C">
    <SwitchPreference
      android:key="switch_preferece"
      android:title="title_switch_preferece"
      android:defaultValue="true" />
    <SeekBarPreference
      android:key="seekbar_preference"
      android:title="title_seekbar_preference"
      android:max="100"
      android:defaultValue="30" />
  </PreferenceCategory>
</PreferenceScreen>

说明:PreferenceFragment的组件很多,包括CheckBoxPreference, EditTextPreference, ListPreference, SwitchPreference, SeekBarPreference, VolumePreference等。这些组建的属性定义如下。
(01) android:key是Preferece的id,它是Preferece的唯一标识。
(02) android:title是Preferece的大标题。
(03) android:summary是Preferece的小标题。
(04) android:dialogTitle是对话框的标题。
(05) android:defaultValue是默认值。
(06) android:entries是列表中各项的说明。
(07) android:entryValues是列表中各项的值。
注意:SwitchPreference是api 14(Android4.0)才支持的。所以,要想使用SwitchPreference的话,必须在manifest中定义apk支持的最小版本。
<uses-sdk android:minSdkVersion="14" />
2. 自定义PreferenceFragment


public class PrefsFragment extends PreferenceFragment 
  implements SharedPreferences.OnSharedPreferenceChangeListener, Preference.OnPreferenceClickListener {
  private static final String TAG = "##PrefsFragment##";
  private static final String CHECK_PREFERENCE  = "checkbox_preference";
  private static final String EDITTEXT_PREFERENCE = "edittext_preference";
  private static final String LIST_PREFERENCE   = "list_preference";
  private static final String SWITCH_PREFERENCE  = "switch_preferece";
  private static final String SEEKBAR_PREFERENCE = "seekbar_preference";
  private Preference mEditText;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    // Load the preferences from an XML resource
    addPreferencesFromResource(R.xml.preferences);
    mEditText = (Preference) findPreference(EDITTEXT_PREFERENCE);
    mEditText.setOnPreferenceClickListener(this);
  }
  @Override
  public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
    // Set summary to be the user-description for the selected value
    Preference connectionPref = findPreference(key);
    if (key.equals(CHECK_PREFERENCE)) {
      boolean checked = sharedPreferences.getBoolean(key, false);
      Log.d(TAG, "CheckBox: checked="+checked);
    } else if (key.equals(EDITTEXT_PREFERENCE)) {
      String value = sharedPreferences.getString(key, "");
      connectionPref.setSummary(value);
      Log.d(TAG, "EditText: value="+value);
    } else if (key.equals(LIST_PREFERENCE)) {
      String value = sharedPreferences.getString(key, "");
      connectionPref.setSummary(value);
      Log.d(TAG, "List: value="+value);
    } else if (key.equals(SWITCH_PREFERENCE)) {
      boolean checked = sharedPreferences.getBoolean(key, false);
      Log.d(TAG, "Switch: checked="+checked);
    } else if (key.equals(SEEKBAR_PREFERENCE)) {
      int value = sharedPreferences.getInt(key, 0);
      Log.d(TAG, "Seekbar: value="+value);
    } 
  }
  @Override
  public boolean onPreferenceClick(Preference preference) {
    SharedPreferences sharedPreferences = preference.getSharedPreferences();
    String value = sharedPreferences.getString(preference.geTKEy(), "");
    Log.d(TAG, "onPreferenceClick: value="+value);
    return true;
  }
  @Override
  public void onResume() {
    super.onResume();
    getPreferenceManager().getSharedPreferences().reGISterOnSharedPreferenceChangeListener(this);
  }
  @Override
  public void onPause() {
    getPreferenceManager().getSharedPreferences().unregisterOnSharedPreferenceChangeListener(this);
    super.onPause();
  }
}

说明:PreferenceFragment中的每一项都是一个SharedPreferences对象,它们会像SharedPreferences存储在该APK的私有数据区。监听PreferenceFragment中的成员有多种方式,常用的两种就是:
(01) 监听数据的变化:通过实现SharedPreferences.OnSharedPreferenceChangeListener接口,来监听PreferenceFragment中每一项的数据变化。
(02) 监听点击事件:通过实现Preference.OnPreferenceClickListener接口,来监听PreferenceFragment中每一项的点击动作。
3. 使用PreferenceFragment
前面已经定义好了一个PreferenceFragment。接下来,就可以实例化它的对象,并将其在Activity中进行显示。


public class FragmentTest extends Activity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //setContentView(R.layout.main);
    getFragmentManager().beginTransaction().replace(android.R.id.content, 
        new PrefsFragment()).commit(); 
  }
}
您可能感兴趣的文章:Android中ViewPager和Fragment的使用Android 开发之BottomBar+ViewPager+Fragment实现炫酷的底部导航效果Android应用中使用Fragment组件的一些问题及解决方案总结详解Android应用中DialogFragment的基本用法Android App中使用ListFragment的实例教程实例探究Android开发中Fragment状态的保存与恢复方法Android中的Fragment类使用进阶Android程序开发之Fragment实现底部导航栏实例代码Android 动态添加Fragment的实例代码


--结束END--

本文标题: Android中Fragment子类及其PreferenceFragment的创建过程演示

本文链接: https://lsjlt.com/news/25069.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作