我正在使用带有图标的 CheckBoxPrefence。该图标在 ICS 上正确显示,但在 2.2 上不正确。我没有正确使用它吗?
集成电路:
2.2:
首选项.xml
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<CheckBoxPreference
android:persistent="false"
android:icon="@drawable/android"
android:title="check box"
android:key="akey">
</CheckBoxPreference>
</PreferenceScreen>
Temp.java
public class Temp extends PreferenceActivity
{
protected void onCreate(Bundle state)
{
super.onCreate(state);
addPreferencesFromResource(R.xml.pref);
}
}