16

我正在自定义 ListView 中加载电话联系人。每行都是一个可检查的 LinearLayout,其中包含一个 CheckedTextView 和另一个 TextView。

我正在使用自定义 ArrayAdapter 提供列表视图。我的问题是我无法在 getView() 中控制 CheckedTextViews。例如,当我尝试以下

public View getView(int position, View convertView, ViewGroup parent) {
        View row = convertView;
        if(row == null){            
            row = inflater.inflate(layout, parent, false);
        }

        CheckedTextView checkedTextView =  (CheckedTextView) row.findViewById(R.id.checkedTextView);
        checkedTextView.setText("A");
        checkedTextView.setChecked(true);
        return row;
    }

每当我滚动列表视图时,这应该检查每个文本视图,但这并没有发生。谁能告诉我该怎么做?

编辑:在 getView() 中检查它很重要,我不能在 setListAdapter() 之后检查所有内容

EDIT2:这是显示每行视图的 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<com.example.multiplecontacts.CheckableLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <CheckedTextView
        android:id="@+id/checkedTextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:checkMark="?android:attr/listChoiceIndicatorMultiple"
        android:paddingBottom="0dp"
        android:text="CheckedTextView"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView
        android:id="@+id/subTextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Small Text"
        android:paddingTop="0dp"
        android:textAppearance="?android:attr/textAppearanceSmall" />

</com.example.multiplecontacts.CheckableLinearLayout>

CheckableLinearLayout 是一个自定义布局,它扩展了 LinearLayout 并实现了我之前所说的 Checkable。我把它从这里拿走了

4

3 回答 3

30

您是否在布局 xml 中为 CheckedTextView 设置了 checkMark 属性?

例如:android:checkMark="?android:attr/listChoiceIndicatorMultiple

CheckedTextView 不仅仅是一个带有文本的复选框。您还必须注意,CheckedTextView 是不可聚焦的,或者在没有一些操作的情况下可点击(因为它是为 ListView 设计的,因此它的状态必须由 ListView 控制setOnItemClickListener

setChoiceMode应该为 ListView 设置。检查适配器的 getView 内的行应该通过以下方式完成:listView.setItemChecked(position, value)

于 2012-09-28T14:12:27.533 回答
3

@Pier-Luc Gendreau 和 @fox 在评论中提到了解决方案,但没有在回答中提到,因此代表他们发布答案。

正如@AlexOrlov 所提到的,CheckedTextView 是不可聚焦的,或者在没有一些操作的情况下是不可点击的。因此,您需要做的是使用 ListView 设置项目检查,您可以从适配器本身或从拥有 ListView 的活动/片段中进行。

要从适配器做到这一点,

public View getView(int position, View convertView, ViewGroup parent) 
{ 
if (//logic) {
((ListView) parent).setItemChecked(position, true);
}
}

来自活动/片段

if (//logic) {
listView.setItemChecked(position, true);
}
于 2017-02-27T18:34:41.503 回答
1

当你滚动列表时,每次它调用它的 getview() 方法。因此,如果您在 listcell 中有任何复选框或任何编辑框,它将重新初始化它。

我的想法是存储复选框的状态(选中或未选中)。所以在这里我首先使用 ArrayList 我用 false 值填充它,然后在它的点击事件上我用来存储它的实际状态。

 class MyAdapter extends BaseAdapter  implements OnClickListener   {

    private ArrayList<Boolean> checks=new ArrayList<Boolean>();//Boolean type array to   manage check box

  private static LayoutInflater inflater=null;

    public MyAdapter(Context context, ArrayList<HashMap<String, String>> d)
    {
              inflater =     (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

      //fill with false values
    for (int i = 0; i < d.size(); i++) 
    {
            checks.add(i, false);
    }
    }

    public int getCount()
    {
        return data.size();
    }

    public Object getItem(int position)
    {
        return position;
    }

    public long getItemId(int position) 
    {
        return position;
    }




        public View getView(int position, View convertView, ViewGroup parent)
       {

        View vi=convertView;

        if(convertView==null)

          vi = inflater.inflate(R.layout.<your layout>, null);

          //Checkbox is of button type----android:button="@drawable/btn_check"
          //make a selector xml for checkbox       

          checkBox=(CheckBox)vi.findViewById(R.id.check_box);


          checkBox.setTag(Integer.valueOf(position));
          checkBox.setOnClickListener(this);
          checkBox.setChecked(checks.get(position));


        return vi;
    }

        @Override
        public void onClick(View v) 
        {
          int viewId=v.getId();
          if(viewId== R.id.check_box)
          {
            Integer index = (Integer)v.getTag();
            boolean state = checks.get(index.intValue());
            checks.set(index.intValue(), !state);

          }
        }
     }

更新:解决方案 2:您可以在 ViewHolder 类中放置一个布尔变量。这个布尔变量将用于定义是否选择了项目。

希望这对您有所帮助。

于 2012-09-28T14:32:18.540 回答