我想要在选中复选框时代码返回仅在同一行中的文本视图的字符串。
我正在使用LayoutInflater和另一个类,该类具有用于创建包含字符串的列表的代码。
我的代码:
public class InteractiveArrayAdapter extends ArrayAdapter<model> {
private final List<model> list;
private final Activity context;
public InteractiveArrayAdapter(Activity context, List<model> list) {
super(context, R.layout.rep, list);
this.context = context;
this.list = list;
}
static class ViewHolder {
protected TextView text;
protected CheckBox checkbox;
}
public View getView(int position, View convertView, ViewGroup parent) {
View view = null;
if (convertView == null) {
LayoutInflater inflator = context.getLayoutInflater();
view = inflator.inflate(R.layout.rep, null);
final ViewHolder viewHolder = new ViewHolder();
viewHolder.text = (TextView) view.findViewById(R.id.TextView07);
viewHolder.checkbox = (CheckBox) view.findViewById(R.id.CheckBox05);
viewHolder.checkbox
.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked) {
model element = (model) viewHolder.checkbox
.getTag();
element.setSelected(buttonView.isChecked());
}
});
view.setTag(viewHolder);
viewHolder.checkbox.setTag(list.get(position));
} else {
view = convertView;
((ViewHolder) view.getTag()).checkbox.setTag(list.get(position));
}
ViewHolder holder = (ViewHolder) view.getTag();
holder.text.setText(list.get(position).getName());
holder.checkbox.setChecked(list.get(position).isSelected());
return view;
}
}
我的xml:
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TableLayout
android:id="@+id/h103"
android:layout_width="match_parent"
android:layout_height="27dp"
android:layout_x="0dp"
android:layout_y="0dp"
android:background="@drawable/back1" >
<TableRow
android:id="@+id/TableRow05"
android:layout_width="match_parent"
android:layout_height="27dp"
android:layout_marginTop="4dp" >
<CheckBox
android:id="@+id/CheckBox05"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="-4dp"
android:button="@drawable/test" />
<TextView
android:id="@+id/TextView07"
android:layout_width="220dp"
android:layout_height="22dp"
android:layout_marginLeft="23dp"
android:layout_marginTop="-6dp"
android:text="" />
<TextView
android:id="@+id/TextView08"
android:layout_width="110dp"
android:layout_height="22dp"
android:layout_marginLeft="0dp"
android:layout_marginTop="-4dp"
android:text="095110263" />
</TableRow>
</TableLayout>
</AbsoluteLayout>
最佳答案
您必须先处理checkbox.onclicklistener,然后再处理checkbox.onCheckedChanged,因为如果在列表视图中使用它,它将被自动调用,那么您选中的复选框将被隐藏。
new OnClickListener()
{
@Override
public void onClick(View view)
{}
}
在onclicklistener中,您将视图作为参数获得,这是一个复选框。此处的视图具有getparent()方法,该方法将向您返回一个其中设置了复选框的视图。您可以通过打印日志来检查它。如果您获得了复选框的父项,那么您还可以获得其中1个子视图为复选框的父项的所有子视图。从所有子视图中,您都可以获取将其显示为吐司的值。如果复选框的父级在列表项的视图中还有另一个父级,则您还可以通过调用getparent()方法获取父级视图的父级。
请记住,视图具有父子关系,因此,如果您希望所有孩子都必须成为父母。
关于java - 在自定义适配器 ListView 中 checkin 时祝酒,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15260629/