他是我的首选活动:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="Select your country or region">
<ListPreference
android:title="Pick your country"
android:key="regionsListPref"
android:defaultValue="digiGreen"
android:entries="@array/regionArray"
android:entryValues="@array/regionValues" />
<ImageView
android:id="@+id/ImageView01"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:cropToPadding="true"
android:adjustViewBounds="true"
android:src="@drawable/splash"
android:scaleType="centerInside"></ImageView>
</PreferenceCategory>
<PreferenceCategory
android:title="Second Category">
<CheckBoxPreference android:title="@string/bjr" android:key="macheckbox"
android:summaryOn="La checkbox est cochée"
android:summaryOff="La checkbox n'est plus cochée"
android:defaultValue="true"
/>
<EditTextPreference android:title="Mon EditText"
android:dialogTitle="Modification du texte"
android:dialogMessage="Entrez le nouveau texte"
android:dialogIcon="@drawable/icon"
android:defaultValue="Texte par défaut" android:key="montextedit"/>
</PreferenceCategory>
</PreferenceScreen>
使用 mmy 代码构建项目时没有错误。但是通过显示首选项活动运行它时出现异常。
所以,我的问题是:如何简单地将 ImageView 添加到 PreferenceActivity 中?
此致