Android:按下列表项时如何避免列表视图项中按钮的按下视觉效果
我有一个列表视图,其中每个列表项都有一个按钮。当我按下列表项时,我发现里面的按钮也显示出点击的视觉效果。如何防止按下列表项时单击按钮的这种视觉效果?
这是列表项的布局:
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
listview
的onItemClickListener(...)
中,您可以暂时禁用按钮的点击。但不要忘记在选择其他项目时重新启用它。我还没有尝试过这个,但它可能会起作用。In you
onItemClickListener(...)
oflistview
,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.