右侧具有不同图像的列表选择器
我希望在列表项的右侧有一个标记,如果列表项被选中或未选中,该标记会发生变化。我在列表项的布局中放入了一个具有选择器背景可绘制的 ImageView :
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/selector_marked" android:state_checked="true"/>
<item android:drawable="@drawable/selector"/>
</selector>
我创建了一个 CheckableFrameLayout 类,它是实现 checkable 的 list_item 布局的根。
这是我的列表项右侧的 ImageView:
<ImageView
android:id="@+id/selector"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@drawable/list_selector_land" />
问题是它不起作用。我做错了什么?
谢谢
I want to have a marker on the right side of a list item that changes if the list item is checked or not. I put in the layout of the list item an ImageView that has a selector background drawable :
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/selector_marked" android:state_checked="true"/>
<item android:drawable="@drawable/selector"/>
</selector>
I have created a CheckableFrameLayout class that is the root of the list_item layout that implements checkable.
This is my ImageView on the right side of the list item:
<ImageView
android:id="@+id/selector"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@drawable/list_selector_land" />
The problem is that it doesn't work. What am I doing wrong?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论