我查看了几个教程,所有listPreference对话框都是这样的。
但我的对话框看起来像这样
为什么我的对话框看起来不同?我查看了教程,我的xml代码看起来与他们的相同。
这是我的pref_general.xml代码。
<?xml version="1.0" encoding="utf-8"?>
<!-- NOTE: EditTextPreference accepts EditText attributes. -->
<!-- NOTE: EditTextPreference's summary should be set to its value by the activity code. -->
<EditTextPreference
android:key="@string/pref_location_key"
android:title="@string/pref_title_location"
android:defaultValue="@string/pref_location_default"
android:selectAllOnFocus="true"
android:inputType="text"
android:capitalize="words"
android:singleLine="true"
android:maxLines="1" />
<!-- NOTE: ListPreference's summary should be set to its value by the activity code. -->
<ListPreference
android:title="@string/pref_temperature_units_title"
android:key="@string/pref_temperature_units_key"
android:defaultValue="@string/pref_units_metric"
android:entryValues="@array/pref_temperature_unit_values"
android:entries="@array/pref_temperature_units"
/>
和部分活动代码
public class SettingsActivity extends PreferenceActivity
implements Preference.OnPreferenceChangeListener {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Add 'general' preferences, defined in the XML file
addPreferencesFromResource(R.xml.pref_general);
// For all preferences, attach an OnPreferenceChangeListener so the UI summary can be
// updated when the preference changes.
bindPreferenceSummaryToValue(findPreference(getString(R.string.pref_location_key)));
bindPreferenceSummaryToValue(findPreference(getString(R.string.pref_temperature_units_key)));
}
答案 0 :(得分:0)
我认为你正在使用棒棒糖设备进行测试。如果您在棒棒糖设备下面进行测试,它将看起来像第一个。您可以像这样自定义&#39; How to customize list preference radio button&#39;