我在更改警报对话框的chexbox主题时遇到了麻烦。我无法将选定的复选框颜色更改为我的AccentColor。
这是我的样式代码
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- checked -->
<item android:state_checked="true" android:drawable="@color/AccentColor">
</item>
<item android:state_checked="false" android:drawable="@color/White">
</item>
</selector>
选择器:activated_checkbox
private void showDialog() {
final CharSequence[] items = getResources().getStringArray(R.array.tipoDescargas);
final boolean[] states = {false, false, false};
AlertDialog.Builder builder = new AlertDialog.Builder(this,R.style.AlertDialogCustom);
builder.setTitle(getResources().getString(R.string.preguntaDescargas));
builder.setMultiChoiceItems(items, states, new DialogInterface.OnMultiChoiceClickListener() {
public void onClick(DialogInterface dialogInterface, int item, boolean state) {
}
});
builder.setPositiveButton("Descargar", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
SparseBooleanArray CheCked = ((AlertDialog) dialog).getListView().getCheckedItemPositions();
if (CheCked.get(0) && CheCked.get(1) && CheCked.get(2))
Toast.makeText(getApplication(), "TODOS", Toast.LENGTH_SHORT).show();
if (CheCked.get(0)) {
Toast.makeText(getApplication(), "Item 1", Toast.LENGTH_SHORT).show();
}
if (CheCked.get(1)) {
Toast.makeText(getApplication(), "Item 2", Toast.LENGTH_SHORT).show();
}
if (CheCked.get(2)) {
Toast.makeText(getApplication(), "Item 3", Toast.LENGTH_SHORT).show();
}
}
});
builder.setNegativeButton("Cancelar", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});builder.create().show();
}
以及显示AlertDialog的方法。
<style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:checkedTextViewStyle">@style/CustomCheckBox</item>
</style>
<style name="CustomCheckBox" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:checkMark">@drawable/activated_checkbox</item>
</style>
任何人都可以帮助我吗?谢谢
更新1
<style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:listChoiceIndicatorMultiple">@drawable/activated_checkbox</item>
</style>
解
我找到了正确显示颜色的解决方案。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/checkedcheckbox24" android:state_checked="true"></item>
<item android:drawable="@drawable/uncheckedcheckbox24" android:state_checked="false"></item>
</selector>
和选择器
{{1}}
答案 0 :(得分:5)
使用此代码,图标可以正确显示
<style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:listChoiceIndicatorMultiple">@drawable/activated_checkbox</item>
</style>
和选择器代码
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/checkedcheckbox24" android:state_checked="true"></item>
<item android:drawable="@drawable/uncheckedcheckbox24" android:state_checked="false"></item>
</selector>
答案 1 :(得分:0)
您可以使用自定义选择器自定义复选框。
<CheckBox
android:text="Custom CheckBox"
android:button="@drawable/checkbox_selector"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
你的Selector类,把它放在drawable文件夹中:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:drawable="@drawable/checkedimage" />
<item android:state_checked="false" android:drawable="@drawable/uncheckedimage" />
</selector>
答案 2 :(得分:0)
AlertDialog
用于呈现每个选项的默认多选布局实际上是CheckedTextView
。由于此课程不以任何方式扩展CheckBox
,因此主题中的android:checkboxStyle
引用将不起作用。
API级别17添加了属性android:checkedTextViewStyle
,可以专门用于样式CheckedTextView
。如果您的最小sdk版本设置为此版本或任何更高版本,则可以使用此方法。
另一种替代方案,也可以在较旧的平台上使用android:listChoiceIndicatorMultiple
(还有一个等价的单选项,或者更好的说:视觉上看起来像单选按钮的项目,但同样是{{1 }} 事实上)。使用它来提供您自己的drawable,它将显示为复选标记(或单选按钮圆圈)。