Android:按下列表项时如何避免列表视图项中按钮的按下视觉效果

发布于 2024-12-17 15:40:09 字数 1444 浏览 0 评论 0原文

我有一个列表视图,其中每个列表项都有一个按钮。当我按下列表项时,我发现里面的按钮也显示出点击的视觉效果。如何防止按下列表项时单击按钮的这种视觉效果?

这是列表项的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:background="#DFDEDF" >
<ImageView
    android:id="@+id/LocationImageView"
    android:layout_width="20dp"
    android:layout_height="20dp"
    android:layout_weight="0"
    android:src="@drawable/icn_location_yellow_30x30"
    android:layout_gravity="center_vertical"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp" />
<TextView
    android:id="@+id/LocationTitleTextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:layout_gravity="center_vertical"
    android:ellipsize="end"
    android:fadingEdge="horizontal"
    android:singleLine="true"
    android:textColor="@android:color/black" />
<Button
    android:id="@+id/LocationDetailButton"
    android:layout_width="21dp"
    android:layout_height="21dp"
    android:layout_weight="0"
    android:background="@drawable/arrow_btn"
    android:layout_gravity="center_vertical"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:focusable="false"
    android:focusableInTouchMode="false" />
</LinearLayout>

I have a listview, where there is a button in each list item. When I press the list item, I found the button inside also showed the visual effort of clicking. How can I prevent this visual effort of clicking the button when pressing the list item?

Here is the layout of the list item:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:background="#DFDEDF" >
<ImageView
    android:id="@+id/LocationImageView"
    android:layout_width="20dp"
    android:layout_height="20dp"
    android:layout_weight="0"
    android:src="@drawable/icn_location_yellow_30x30"
    android:layout_gravity="center_vertical"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp" />
<TextView
    android:id="@+id/LocationTitleTextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:layout_gravity="center_vertical"
    android:ellipsize="end"
    android:fadingEdge="horizontal"
    android:singleLine="true"
    android:textColor="@android:color/black" />
<Button
    android:id="@+id/LocationDetailButton"
    android:layout_width="21dp"
    android:layout_height="21dp"
    android:layout_weight="0"
    android:background="@drawable/arrow_btn"
    android:layout_gravity="center_vertical"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:focusable="false"
    android:focusableInTouchMode="false" />
</LinearLayout>

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

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

发布评论

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

评论(1

转身泪倾城 2024-12-24 15:40:09

listviewonItemClickListener(...)中,您可以暂时禁用按钮的点击。但不要忘记在选择其他项目时重新启用它。我还没有尝试过这个,但它可能会起作用。

In you onItemClickListener(...) of listview,you can temporarily disable button's click.But don't forget to re-enable it when other item is selected. I haven't tried this but it might work.

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