列表视图中的按钮不可单击



我希望能够单击列表视图项目内的按钮。它应该与单击整个项目具有不同的效果。我意识到在stackoverflow上提出了几个问题,但没有一个建议对我有用。

列表视图位于片段内。

片段的布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".EventFragment" >
    <ListView
        android:id="@+id/event_list"
        android:background="#C0FFFFFF" 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="5dp" />
</RelativeLayout>

每个列表项的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" 
android:background="#C0101010">
    <TextView
    android:id="@+id/event_list_separator"
    style="?android:attr/listSeparatorTextViewStyle"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="separator"
    android:textColor="@android:color/white" />
    <LinearLayout
    android:id="@+id/event_list_element"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#FFFFFFFF"
    android:padding="6dip" >
        <ImageView
        android:id="@+id/event_list_element_icon"
        android:layout_width="26dip"
        android:layout_height="60dip"
        android:layout_marginRight="6dip"
        android:contentDescription="TODO" />
        <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
            <TextView
            android:id="@+id/event_list_element_firstLine"
            android:layout_width="match_parent"
            android:layout_height="25dip"
            android:text="item_header"
            android:textSize="18sp" />
            <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="35dip"
            android:orientation="horizontal" >
                <TextView
                android:id="@+id/event_list_element_secondLine"
                android:layout_width="0dip"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:gravity="center_vertical"
                android:ellipsize="marquee"
                android:singleLine="true"
                android:text="Description"
                android:textSize="14sp" />
                <Button
                android:id="@+id/event_list_element_button_1"
                android:layout_width="132dip"
                android:layout_height="match_parent"
                android:drawableLeft="@drawable/ic_button1"
                android:text="Participate"
                android:textStyle="bold"
                android:textSize="14sp"
                />

                <Button
                android:id="@+id/event_list_element_button_2"
                android:layout_width="110dip"
                android:layout_height="match_parent"
                android:ellipsize="marquee"
                android:drawableLeft="@drawable/ic_button2"
                android:singleLine="true"
                android:text="No thanks"
                android:textStyle="bold"
                android:gravity="center_vertical"
                android:textSize="14sp" 
                />
                <TextView
                android:id="@+id/event_list_element_additional_text"
                android:layout_width="100dip"
                android:layout_height="match_parent"
                android:ellipsize="marquee"
                android:singleLine="true"
                android:gravity="center_vertical"
                android:text="sample"
                android:textStyle="bold"
                android:textSize="14sp" /> 
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>
</LinearLayout>

我的列表适配器是:

public class EventAdapter extends ArrayAdapter<Event> {
    static class ViewHolder {
        TextView separator;
        LinearLayout relativeLayout;
        TextView eventHeader;
        TextView eventDescription;
        ImageView blueDot;
        Button button1;
        Button button2;
    }
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        ViewHolder viewHolder;
        if (convertView == null) {
            LayoutInflater inflater = (LayoutInflater)     
            _context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            convertView = inflater.inflate(R.layout.event_list_item, parent, false);
            viewHolder = new ViewHolder();
            viewHolder.relativeLayout = (LinearLayout) convertView.findViewById(R.id.event_list_element);
            viewHolder.blueDot = (ImageView) convertView.findViewById(R.id.event_list_element_icon);
            viewHolder.eventHeader = (TextView) convertView.findViewById(R.id.event_list_element_firstLine);
            viewHolder.eventDescription = (TextView) convertView.findViewById(R.id.event_list_element_secondLine);
            viewHolder.button1 = (Button) convertView.findViewById(R.id.event_list_element_button1);
            viewHolder.button2 = (Button) convertView.findViewById(R.id.event_list_element_button2);
            viewHolder.separator = (TextView) convertView.findViewById(R.id.event_list_separator);
            convertView.setTag(viewHolder);
        } else{
            viewHolder = (ViewHolder) convertView.getTag();
        }
        final Event item = getItem(position);
        if (item != null) {     
            OnClickListener listener = new OnClickListener() {
                @Override
                public void onClick(View arg0) {
                    Toast.makeText(_context, "boo!", Toast.LENGTH_SHORT).show();
                }
            };
            viewHolder.button1.setOnClickListener(listener);            
        }
        return convertView;
    }
}

问题是这两个按钮不可单击。我试图走得更远:

ListView listView = (ListView) rootView.findViewById(R.id.event_list);
listView.setItemsCanFocus(true);

我还尝试在按钮上设置:

android:focusable="true"
android:clickable="true"

我还尝试了android:descendantFocusability。

我的尝试都没有使按钮可点击。

在每个

列表项的"父布局"声明中插入属性android:descendantFocusability="blocksDescendants"。XML 应如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" 
android:descendantFocusability="blocksDescendants"
android:background="#C0101010">
    <TextView
    android:id="@+id/event_list_separator"
    style="?android:attr/listSeparatorTextViewStyle"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="separator"
    android:textColor="@android:color/white" />
    <LinearLayout
    android:id="@+id/event_list_element"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#FFFFFFFF"
    android:padding="6dip" >
        <ImageView
        android:id="@+id/event_list_element_icon"
        android:layout_width="26dip"
        android:layout_height="60dip"
        android:layout_marginRight="6dip"
        android:contentDescription="TODO" />
        <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
            <TextView
            android:id="@+id/event_list_element_firstLine"
            android:layout_width="match_parent"
            android:layout_height="25dip"
            android:text="item_header"
            android:textSize="18sp" />
            <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="35dip"
            android:orientation="horizontal" >
                <TextView
                android:id="@+id/event_list_element_secondLine"
                android:layout_width="0dip"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:gravity="center_vertical"
                android:ellipsize="marquee"
                android:singleLine="true"
                android:text="Description"
                android:textSize="14sp" />
                <Button
                android:id="@+id/event_list_element_button_1"
                android:layout_width="132dip"
                android:layout_height="match_parent"
                android:drawableLeft="@drawable/ic_button1"
                android:text="Participate"
                android:textStyle="bold"
                android:textSize="14sp"
                />

                <Button
                android:id="@+id/event_list_element_button_2"
                android:layout_width="110dip"
                android:layout_height="match_parent"
                android:ellipsize="marquee"
                android:drawableLeft="@drawable/ic_button2"
                android:singleLine="true"
                android:text="No thanks"
                android:textStyle="bold"
                android:gravity="center_vertical"
                android:textSize="14sp" 
                />
                <TextView
                android:id="@+id/event_list_element_additional_text"
                android:layout_width="100dip"
                android:layout_height="match_parent"
                android:ellipsize="marquee"
                android:singleLine="true"
                android:gravity="center_vertical"
                android:text="sample"
                android:textStyle="bold"
                android:textSize="14sp" /> 
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>
</LinearLayout>

我找到了解决方案!我想定期更新事件列表(现在它是一个线程每 x 毫秒运行一次,稍后我想将其切换为仅在有更改时更新事件列表)。无论如何,代码是(在我的主要活动中):

private BroadcastReceiver _bReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        if(intent.getAction().equals(RECEIVE_EVENT)) {
            Bundle bundle = intent.getExtras();
            Event event = (Event) bundle.get("event");
            showEvent(event);
        }
    }
};
private void showEvent(final Event event){
    final Context context = this;
    runOnUiThread(new Runnable() {
        public void run() {
            final ListView listview = (ListView) findViewById(R.id.event_list);
            EventAdapter adapter = new EventAdapter(context, id.event_list, getEventList());
            listview.setAdapter(adapter);     
        }
    });
}

每次设置适配器肯定不是正确的方法。一旦我将其更改为仅设置一次适配器,它就会像建议的那样使用 android:descendantFocusability="blocksDescendants"

相关内容

  • 没有找到相关文章

最新更新