我使用微调器来显示某些内容,这是我的代码:
6
使用此代码,单击微调器时,我可以看到文本和复选框 之后,我尝试像这样自定义微调器:
ArrayAdapter<ClassName> adapter = new ArrayAdapter<ClassName>(getActivity(), android.R.layout.simple_spinner_dropdown_item, nameList);
adapter.setDropDownViewResource(android.R.layout.simple_list_item_single_choice);
这是list_spinner_dropdown.xml:
ArrayAdapter<ClassName> adapter = new ArrayAdapter<ClassName>(getActivity(),
R.layout.list_spinner, tenfavList);
adapter.setDropDownViewResource(R.layout.list_spinner_dropdown);
但是使用此代码时,单击微调器时,我只看到文本,没有复选框 如何解决?
答案 0 :(得分:1)
好的,现在我得到了你的问题。问题只是请您在CheckedTextView中添加样式以进行选中或取消选中,如:
在res / drawable
中添加文件default_checkbox.xml<?xml version="1.0" encoding="utf-8"?>
<item android:state_checked="true"
android:drawable="@drawable/checkbox_checked" /> <!-- checked -->
<item android:state_pressed="true"
android:drawable="@drawable/checkbox_checked" /> <!-- pressed -->
<item android:drawable="@drawable/checkbox_default" /> <!-- default -->
在你的Xml中:
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAllCaps="true"
android:singleLine="true"
android:ellipsize="end"
android:checked="true"
android:checkMark="@drawable/default_checkbox"
android:text="sdfsdfsdfsdfdsfdsf"
android:textColor="#0004ff"
android:textSize="25dp"/>