gpt4 book ai didi

java - 使用自定义选择器的 ListView 项目背景

转载 作者:行者123 更新时间:2023-11-30 03:54:07 25 4
gpt4 key购买 nike

我知道有很多关于这个问题的话题,我都看过了。但是我仍然很困惑为什么我的 ListView 背景仍然是黑色。只有当我将构成我的 ListView 行的 LinearLayout 的背景更改为某种颜色时,我才能更改背景。但是,当我将 LinearLayout 的背景设置为一种颜色时,我无法查看选择器。

我已经设置了 cacheColorHint="#00000000", android:scrollingCache="false", 甚至尝试了 android:drawSelectorOnTop="true"。我认为问题可能在于定义或创建我的选择器的某个地方,因为我在测试应用程序时从未能够在屏幕上查看我的更改。但这都是猜测,因为我无法解决我的问题,我真的不知道哪里出了问题。您可以在下面查看我的代码。

我的选择器:list_background.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_focused="true" android:color="#80ff0000" /> <!-- focused -->
<item android:state_focused="true" android:state_pressed="true" android:color="#80ff0000" /> <!-- focused and pressed-->
<item android:state_pressed="true" android:color="#80ff0000" /> <!-- pressed -->
<item android:color="#ffffffff" /> <!-- default -->
</selector>

我的 ListView: main.xml

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

<!-- List view -->
<ListView android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:dividerHeight="0px"
android:divider="#0099CC"
android:listSelector="@drawable/list_background"
android:drawSelectorOnTop="true"
android:cacheColorHint="#00000000"
android:scrollingCache="false"/>

</RelativeLayout>

我的线性布局:image_text_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#00000000">

<ImageView android:id="@+id/feed_image"
android:layout_width="100dip"
android:layout_height="100dip"
android:paddingTop="5dip"
android:paddingRight="3dip"
android:background="#00000000"/>

<TextView android:id="@+id/job_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FF4444"
android:paddingTop="5dip"
android:paddingBottom="28dip"
android:paddingLeft="8dip"
android:paddingRight="8dip"
android:background="#00000000"/>
</LinearLayout>

最佳答案

可能有两件事。

一:您可能需要将 LinearLayout 设置为“android:clickable”或“android:focusable”。这是因为默认情况下布局不可点击。 android 默认的 simple_list_item 在哪里。

二:我也相信在处理自定义行时,您需要将选择器分配给自定义行 (image_text_layout.xml) LinearLayout 的背景,而不是 ListView 。我不太确定。

关于java - 使用自定义选择器的 ListView 项目背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13617505/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com