右侧具有不同图像的列表选择器

发布于 2025-01-07 01:10:27 字数 797 浏览 0 评论 0原文

我希望在列表项的右侧有一个标记,如果列表项被选中或未选中,该标记会发生变化。我在列表项的布局中放入了一个具有选择器背景可绘制的 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文