我想在我的应用程序中使用PreferenceScreen
来设置一些设置。我已经自定义了此页面,并为任何首选项设置了布局。所有的偏好都可以,但CheckBoxPreferences
,当我点击它时没有显示任何反应,这在每次都是真的。我可以设置是假的!!!我为自定义CheckBox设置了 android:id="@+android:id/checkbox"
CheckBox自定义xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff">
<TextView
android:id="@android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="16dp"
android:layout_marginTop="5dp"
android:gravity="right"
android:textColor="#000"
android:textSize="18sp" />
<TextView
android:id="@android:id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+android:id/title"
android:layout_marginRight="16dp"
android:layout_marginTop="5dp"
android:gravity="right"
android:textColor="#c0c0c0"
android:textSize="13sp" />
<CheckBox
android:id="@+android:id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_margin="16dp"/>
</RelativeLayout>
PreferenceSreen xml:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:example="http://schemas.android.com/apk/res-auto"
xmlns:sample="http://schemas.android.com/apk/res-auto">
<CheckBoxPreference
android:defaultValue="true"
android:key="setting_main_subtitle_show"
android:layout="@layout/pref_checkbox_layout"
android:summary="Summary Text"
android:title="Title" />
</PreferenceScreen>
AppPreference java code:
public class AppPreference {
private SharedPreferences sharedPreferences;
private SharedPreferences.Editor editor;
private Context context;
private static final String KeyShowSubTitle = "setting_main_subtitle_show";
public AppPreference(Context context){
this.sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
this.editor = sharedPreferences.edit();
this.context = context;
}
public Boolean getShowSubTitle(){
return sharedPreferences.getBoolean(KeyShowSubTitle, true);
}
}
MainPage java代码:
Boolean show_subTitle = appPreference.getShowSubTitle();
if (show_subTitle == true){
/// SubTitle Text
toolbar.setSubtitle(appPreference.getSubTitleText());
} else {
toolbar.setSubtitle("");
}
如何解决此问题并在CheckBox
中使用自定义PreferenceScreen
?
答案 0 :(得分:0)
您可以使用setTag()
和getTag()
方法来解决此问题。
从您的xml文件中,将android:tag="integer"
添加到CheckBoxPreference并使用getMethod在您的java文件中获取该整数并执行您的操作并使用setMethod然后将其保存在共享首选项中。
答案 1 :(得分:0)
试试这个
custom_layout.xml
<?xml version="1.0" encoding="UTF-8"?>
<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+android:id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:clickable="true"
android:button="@drawable/android_button"/>
default.xml中
<CheckBoxPreference
android:key="@string/Drop_Option"
android:title="Close after call drop"
android:defaultValue="true"
android:widgetLayout="@layout/custom_layout"/>