preference实例
时间: 2023-09-10 18:09:19 浏览: 131
以下是一个简单的 Preference 示例,演示了如何创建一个 Preference 屏幕并添加多个 Preference:
1. 首先,在 res/xml 目录下创建一个名为 preferences.xml 的 XML 文件,用于定义 Preference 屏幕的结构和内容:
```xml
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="General">
<CheckBoxPreference
android:key="show_notifications"
android:title="Show notifications"
android:summary="Enable or disable notifications" />
<ListPreference
android:key="language"
android:title="Language"
android:summary="Select your preferred language"
android:entries="@array/languages"
android:entryValues="@array/language_values"
android:defaultValue="en" />
</PreferenceCategory>
<PreferenceCategory
android:title="Account">
<EditTextPreference
android:key="username"
android:title="Username"
android:summary="Enter your username"
android:dialogTitle="Enter your username"
android:defaultValue="" />
<EditTextPreference
android:key="password"
android:title="Password"
android:summary="Enter your password"
android:dialogTitle="Enter your password"
android:password="true"
android:defaultValue="" />
</PreferenceCategory>
</PreferenceScreen>
```
在上述代码中,我们定义了一个包含两个类别(General 和 Account)的 Preference 屏幕,每个类别包含多个 Preference。其中,CheckBoxPreference 代表一个复选框 Preference,ListPreference 代表一个列表 Preference,EditTextPreference 代表一个文本输入框 Preference。
2. 在 MainActivity 中加载 preferences.xml 文件,并将其显示在屏幕上:
```java
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Load the preferences from an XML resource
addPreferencesFromResource(R.xml.preferences);
}
}
```
在上述代码中,我们使用 addPreferencesFromResource() 方法加载 preferences.xml 文件,并将其显示在屏幕上。
通过以上步骤,我们成功地创建了一个包含多个 Preference 的 Preference 屏幕,并将其显示在屏幕上。用户可以通过修改这些 Preference 值来改变应用程序的行为。
阅读全文