ListView中的TextView在整行上无法选择

时间:2014-09-11 16:11:04

标签: android listview android-listview clickable

我的XML

activity_layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp" >

<ListView
    android:id="@+id/categoriesList"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >
</ListView>

</LinearLayout>

以及customAdaptor

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp" >

<TextView
    android:id="@+id/categoryIDText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:visibility="invisible">
</TextView>

<TextView
    android:id="@+id/categoryName"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textSize="20px" >
</TextView>

</LinearLayout>

所以,在每一行中,我有两个textViews。一个是隐藏的,另一个是可见的。

现在,当我点击任意一行时,唯一可点击的区域是TextView的字符串结束的区域。

即。如果我的TextView categoryName有一个元素设置为Hello,那么listview的行看起来像

您好[BLANK SPACE HERE]

当我触摸它是BLANK SPACE的地方时,它不响应触摸。但当我触摸该区域Hello时,它会响应。

如何使整行可以点击?

由于

修改

        listView.setAdapter(new CategoryAdapter(this, categories));
        listView.setOnItemClickListener(new OnItemClickListener() {
            public void onItemClick(AdapterView<?> parent, View view,
                    int position, long id) {
                // When clicked, show a toast with the TextView text
            }

我的自定义适配器

public View getView(int position, View convertView, ViewGroup parent) {
    LayoutInflater inflater = (LayoutInflater) context
        .getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    View rowView = inflater.inflate(R.layout.list_view_category, parent, false);
    TextView textViewID = (TextView) rowView.findViewById(R.id.categoryIDText);
    TextView textViewName = (TextView) rowView.findViewById(R.id.categoryName);
    textViewID.setText(""+data.get(position).getId());
    textViewName.setText(data.get(position).getName()); 
    return rowView;
}

4 个答案:

答案 0 :(得分:3)

显然我必须更改activity.xml文件的android:layout_width根元素。

这对我有用。

答案 1 :(得分:1)

listview项的根元素已android:layout_width="wrap_content"将其更改为match_parent(在customAdaptor xml中)

答案 2 :(得分:0)

android:clickable="false"添加到TextView。这将使触摸事件落到您的基础行。

答案 3 :(得分:0)

您是否尝试将可见性设置为“已消失”?

<TextView
    android:id="@+id/categoryIDText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:visibility="gone">
</TextView>