J'ai une liste et une case à cocher dans chaque ligne. Je veux qu'à chaque fois que je clique sur une ligne, la case à cocher change son état en conséquence.
checkbox.xml
<CheckBox
Android:id="@+id/CheckBox"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:focusable="false"
Android:text="" />
cliquez écouteur pour ma liste
protected void onListItemClick(ListView l, View v, int position, long id) {
Toast.makeText(getApplicationContext(), "You have selected item no."
+ (position + 1) + "", Toast.LENGTH_SHORT).show();
super.onListItemClick(l, v, position, id);
selectedRow = position;
if (v == null) {
LayoutInflater lif = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = lif.inflate(R.layout.posting_detail_question_row, null);
}
if (checkedTextView.isChecked()) {
Toast.makeText(getApplicationContext(), "Already voted",
Toast.LENGTH_SHORT).show();
} else {
String[] from = {"option", "votes"}; // values to fetch from
// hashmap
int[] to = {R.id.option, R.id.votes}; // id's for the view
SimpleAdapter adp = new SimpleAdapter(getApplicationContext(),
hashList, R.layout.posting_detail_question_row, from, to);
setListAdapter(adp);
checkedTextView.setChecked(true);
}
}
posting_detail_question_row.xml
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="fill_parent"
Android:layout_height="40dp"
Android:orientation="vertical">
<LinearLayout
Android:layout_width="match_parent"
Android:layout_height="fill_parent"
Android:background="@drawable/poll_border_top_bg"
Android:orientation="horizontal">
<TextView
Android:id="@+id/option"
Android:layout_width="0dp"
Android:layout_height="fill_parent"
Android:layout_marginLeft="10dp"
Android:layout_weight=".3"
Android:gravity="center_vertical"
Android:text="Answer 1"
Android:textColor="#333333"
Android:textSize="15sp" />
<TextView
Android:id="@+id/votes"
Android:layout_width="0dp"
Android:layout_height="fill_parent"
Android:layout_marginLeft="10dp"
Android:layout_weight="1"
Android:gravity="center_vertical"
Android:textColor="#333333"
Android:textSize="15sp" />
<CheckBox
Android:id="@+id/CheckBox"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:focusable="false"
Android:text="" />
</LinearLayout>
</LinearLayout>
Mon adaptateur est un SimpleAdapter:
SimpleAdapter adp = new SimpleAdapter(getApplicationContext(),
hashList, R.layout.posting_detail_question_row, from, to);
Log.v("MyLog", "after simple adapter");
setListAdapter(adp);
Vous devez utiliser findViewById pour obtenir un pointeur sur votre case à cocher:
protected void onListItemClick(ListView l, View v, int position, long id) {
Toast.makeText(getApplicationContext(), "You have selected item no."
+(position+1)+"", Toast.LENGTH_SHORT).show();
super.onListItemClick(l, v, position, id);
if (v != null) {
CheckBox checkBox = (CheckBox)v.findViewById(R.id.Checkbox);
checkBox.setChecked(!checkBox.isChecked());
}
}
Si vous recevez l'événement onClick, alors v
ne devrait jamais être nul, mais j'ai mis les vérifications appropriées.
Dans le onListItemClick, procédez comme suit:
CheckBox cb = (CheckBox) v.findViewById(R.id.CheckBox);
cb.setChecked(!cb.isChecked());
CheckBox checkBox = (CheckBox) v.findViewById(R.id.CheckBox);
checkBox.setChecked(true);
Voici le code complet, vous pouvez l'ajouter après avoir défini l'addapter:
list.setOnItemClickListener(new AdapterView.OnItemClickListener(){
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
String message = "Item " + position;
Toast.makeText(MainActivity.this, message, Toast.LENGTH_SHORT).show();
CheckBox cb = (CheckBox) view.findViewById(R.id.checkbox);
cb.setChecked(!cb.isChecked());
}
});