CheckBox首选项是否为Check的标题

时间:2013-07-09 05:02:26

标签: java android xml android-checkbox

我有一个设置菜单,其中有一个CheckBox Preference。我希望当CheckBox被选中时,显示一个android:Title,当它显示另一个时。

这是我到目前为止所做的事情

将Settings.xml

<CheckBoxPreference
    android:key="no_notification"
    android:summary="Disable Notification message"
    android:title="@string/titolo"
    android:summaryOn="@string/acceso"
    android:summaryOff="@string/spento"
    />

的strings.xml

<string name="titolo">Disable / Enable Notification</string>
<string name="acceso">Enable notification</string>
<string name="spento">Disable Notification</string>

在实践中,我希望当它不是Checked时会显示Android:title禁用以及何时选中Enable。我该怎么办?

1 个答案:

答案 0 :(得分:0)

在监听器上你可以添加:

checkBoxcmp.setEnabled(true);