抱歉如果以前曾问过这个问题。

我有一个ListFragment,每个列表项中都包含一个Button。单击按钮应更改该特定列表项的背景颜色。我了解ListFragment内的ListView会刷新自身,这意味着如果用户滚动,以前未单击的列表项很可能会更改其背景色。

我遇到的许多解决方案都包含将单击的列表项的位置存储在自定义适配器(在我的情况下扩展了SimpleAdapter)中实现的重写的getView(int position,View convertView,ViewGroup parent)方法中。

但是,每个列表项中都有一个Button,这使我的问题更加复杂,这意味着除非将OnClickListener附加到自定义适配器中(此部分已完成),否则Button将不可单击。现在,尝试存储Button列表项的位置失败,因为保存的位置始终是刷新的位置,而不是列表项的绝对位置。我还尝试为每个按钮设置标签,但是即使标签在滚动时也会被回收,考虑到ListView的设计,这是(不幸的)预期行为。

我知道,如果列表项中没有需要单击的子项,则可以轻松解决此问题。但是,如果每个列表项中都有需要响应点击的子项,而不是包含每个列表项的父视图,该怎么办?我也尝试过使用选择器来操纵列表项的背景,但这也无济于事。

这是我的自定义适配器的getView方法:

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

    View view = convertView;
    final int pos = position;

    if(view == null){

        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        view = inflater.inflate(R.layout.fragment_layout, null);

        Button button = (Button) view.findViewById(R.id.button);
        button.setOnClickListener(new View.OnClickListener(){


            @Override
            public void onClick(View v) {

                Log.d("CLICKED POSITION",Integer.valueOf(pos).toString());
                View parent = (View) v.getParent();

                parent.setBackgroundColor(Color.GREEN);

            }
        });

    }


    return view;
}


和XML布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="300dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1"
android:descendantFocusability="blocksDescendants"
android:layout_margin="5dp"
>

<ListView android:id="@id/android:list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"

/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/label"
        android:layout_gravity="start"
    />

    <TextView
        android:id="@+id/text_id"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_gravity="end"
    />

     <Button
         android:id="@+id/button"
         android:layout_height="wrap_content"
         android:layout_width="wrap_content"
         android:text="@string/button"
         android:layout_margin="2dp"
         android:layout_marginLeft="2dp"
         android:layout_marginRight="2dp"
         android:clickable="true"

      />


</LinearLayout>


我已经花了很多时间解决这个问题,但我无法找到解决方案。任何方向,指导或解决方案将不胜感激。

最佳答案

在自定义适配器的getView()方法中,仅当convertView为null时,才扩展视图并附加onclicklistener。 convertView是回收视图。如果convertView不为null,则需要更改该视图中的值。您的getView()方法应该像这样

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

        View view = convertView;
        final int pos = position;
        //No recycled view, so create a new one
        if(view == null){

            LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            view = inflater.inflate(R.layout.fragment_layout, null);

        }
        //By this line, we either have a view that is created in the if block above or passed via convertView
        Button button = (Button) view.findViewById(R.id.button);
        //attach listener to the view, recycled or not
        button.setOnClickListener(new View.OnClickListener(){


                @Override
                public void onClick(View v) {

                    Log.d("CLICKED POSITION",Integer.valueOf(pos).toString());
                    //parent not required as we are have the view directly
                    //View parent = (View) v.getParent();

                    v.setBackgroundColor(Color.GREEN);

                }
            });


        return view;
    }


实际上,如果更改了与该项目关联的任何值,则还应根据该position进行更改。例如,如果每个button在列表中显示位置,则还应添加以下行

button.setText("Button " + position);

10-01 08:25