列表视图问题

发布于 2024-10-12 03:45:39 字数 1943 浏览 3 评论 0原文

我对 ListView 组件有一个小问题,当我单击一行时,应用程序捕获触摸事件,但该行没有聚焦!

有什么想法吗?

这是 listview 的 XML:

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                             android:id="@+id/categoriestab_main"
                             android:orientation="vertical"
                             android:layout_width="fill_parent"
                             android:layout_height="fill_parent"
                             android:background="#FFFFFFFF"
                             >



                    <ListView
                            android:id="@+id/categorieslist"
                            android:layout_width="fill_parent" 
                            android:layout_height="fill_parent"
                            android:background="#FFFFFFFF"
                            android:cacheColorHint="#FFFFFFFF"

                    />

             </LinearLayout>  

这是单行的布局:

<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#FFFFFFFF"



    >

      <ImageView
            android:id="@+id/category_image"
            android:layout_width="60dp"
            android:layout_height="40dp"
            android:src="@drawable/no_foto" 

       />

         <TextView
            style="@style/categories_title"
            android:id="@+id/category_name"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:singleLine="true"   
            android:layout_toRightOf="@id/category_image"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
        />


</RelativeLayout>

I have an little issues with an ListView component, when I click on a row the Application capture the touch event but but the row isn't focused!

Any ideas?

This is the XML of listview :

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                             android:id="@+id/categoriestab_main"
                             android:orientation="vertical"
                             android:layout_width="fill_parent"
                             android:layout_height="fill_parent"
                             android:background="#FFFFFFFF"
                             >



                    <ListView
                            android:id="@+id/categorieslist"
                            android:layout_width="fill_parent" 
                            android:layout_height="fill_parent"
                            android:background="#FFFFFFFF"
                            android:cacheColorHint="#FFFFFFFF"

                    />

             </LinearLayout>  

And this is a layout of a single row:

<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#FFFFFFFF"



    >

      <ImageView
            android:id="@+id/category_image"
            android:layout_width="60dp"
            android:layout_height="40dp"
            android:src="@drawable/no_foto" 

       />

         <TextView
            style="@style/categories_title"
            android:id="@+id/category_name"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:singleLine="true"   
            android:layout_toRightOf="@id/category_image"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
        />


</RelativeLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

糖果控 2024-10-19 03:45:39

在您的RelativeLayout 上,删除您添加的背景,而只使用ListView 上的背景颜色。该背景颜色阻碍了点击效果。

On your RelativeLayout, remove the background you have added and instead just have the background color on the ListView. That background color is blocking the click effect.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文