我正在使用一个Listfragment,其中包含一个复选框,其中包含在state_checked上更改的自定义图像。
但是' onListItemClick'函数仅在复选框分配给android:focusable =" false"和android:clickable =" false"在它的布局。
在这种情况下,复选框的自定义图像更改不起作用。
有没有办法一起完成这两个。感谢任何帮助。
public class SympFragment extends ListFragment implements OnClickListener {
private ListView lv;
private String listview_array[] = {
"Text1",
"Text2",
"Text3",
"Text4",
};
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_symp, container, false);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(getActivity(),
R.layout.ch_row, listview_array);
setListAdapter(adapter);
return rootView;
}
@Override
public void onListItemClick(ListView l, View v, int position, long id) {
switch( position )
{
case 0: Toast.makeText(getActivity().getApplicationContext(), "Well Done!", Toast.LENGTH_LONG).show();
break;
}
}
}
布局:
<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/chcheckbox"
android:textSize="15sp"
android:textColor="#ffffff"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:button="@drawable/chselector"
android:drawableLeft="@android:color/transparent"
android:focusable="false"
android:clickable="false"
android:padding="8dp"
/>
选择器xml:
<?xml version="1.0" encoding="utf-8"?>
<item android:drawable="@drawable/unchecked" android:state_checked="false"/>
<item android:drawable="@drawable/checked" android:state_checked="true"/>
<item android:drawable="@drawable/unchecked"/>
答案 0 :(得分:0)
在drawable中创建xml文件custom_checkbox.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/unselected" android:state_checked="false"/>
<item android:drawable="@drawable/selected" android:state_checked="true"/>
<item android:drawable="@drawable/unselected"/>
</selector>
并在复选框调用中:
android:button="@drawable/custom_checkbox"
答案 1 :(得分:0)
似乎&#39; onListItemClick&#39;从不接受复选框输入。所以复选框必须设置为android:focusable =&#34; false&#34;和android:clickable =&#34; false&#34;。 但是可以通过以下方式触发复选框:
@Override
public void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
String item = (String) getListAdapter().getItem(position);
Toast.makeText(getActivity(), item + " selected", Toast.LENGTH_LONG).show();
CheckBox chcheckbox;
switch(position){
case 0:
chcheckbox = (CheckBox) v.findViewById(R.id.chcheckbox);
if (chcheckbox.isChecked() == false) {
chcheckbox.setChecked(true);
} else {
chcheckbox.setChecked(false);
} break;
case 1:
chcheckbox = (CheckBox) v.findViewById(R.id.chcheckbox);
if (chcheckbox.isChecked() == false) {
chcheckbox.setChecked(true);
} else {
chcheckbox.setChecked(false);
} break;
}
}
我不确定这是最佳做法。但是这个调整非常有用,因为我没有找到任何其他解决方案。