gpt4 book ai didi

Android - ListView - 默认列表项(状态)背景颜色

转载 作者:行者123 更新时间:2023-11-30 02:42:07 28 4
gpt4 key购买 nike

当列表首次显示时,如何设置列表项的默认背景色?

看起来很简单……但是等等……

上下文:在动画弹出窗口中,我想显示一个项目列表。我想让它们的初始颜色为“soft_red”(作为示例)。

我最好通过 XML 布局文件进行设置。

当然,我尝试了各种选择器示例。 “按下”和“选择”工作正常。但是弹出后...列表项的背景只是白色,而不是red_soft。

我的代码:

final PopupWindow popup = new PopupWindow( myActivity);
popup.setContentView(layout);
...
ListView m_listview = (ListView) layout.findViewById( R.id.popup_menu_list);
ArrayAdapter<String> adapter = new ArrayAdapter<String>( myActivity, android.R.layout.simple_list_item_1, android.R.id.text1, menuItems);
m_listview.setAdapter( adapter);

布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/popupLinearLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:dividerHeight="2dp"
android:orientation="vertical" >
<ListView
android:id="@+id/popup_menu_list"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:listSelector="@drawable/list_selected_flat_colour"
android:layout_gravity="right" />
</LinearLayout>

选择器代码(在 list_selected_flat_colour.xml 中):

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Normal state. WHY IS THIS NEVER USED -->
<item android:drawable="@color/red_soft"
android:state_pressed="false"
android:state_selected="false"/>
<!-- pressed state. OK -->
<item android:drawable="@color/pink_soft"
android:state_pressed="true"
android:state_selected="false"/>
<!-- Selected state. OK-->
<item android:drawable="@color/green_soft"
android:state_pressed="false"
android:state_selected="true"/>
</selector>

感谢您的帮助。

最佳答案

噗,找到了……

参见 http://www.oneminuteinfo.com/2012/12/android-set-selection-color-in-listview.html .这是一个很棒的教程。

通过 ListView 设置选择器不起作用。通过 ListView item 设置选择器有效!

总结......列表项条目:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:minHeight="15dp"
android:textSize="15dp"
android:focusable="false"
android:background="@drawable/my_drawable"/>

第一眼就显示 red_soft 菜单项的选择器:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true" android:drawable="@drawable/orange_color"/>
<item android:state_pressed="true" android:drawable="@drawable/white_color"/>
<item android:state_focused="true" android:drawable="@drawable/red_color"/>
<item android:drawable="@drawable/red_soft2"/>
</selector>

颜色:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<drawable name="red_color">#ff0000</drawable>
<drawable name="white_color">#ffffff</drawable>
<drawable name="orange_color">#ffffbb33</drawable>
<drawable name="red_soft2">#f7a1c3</drawable>
</resources>

ListView :

<ListView
android:id="@+id/possibleLocationView"
android:layout_width="fill_parent"
android:layout_height="80dp"
android:layout_marginBottom="10dp"/>

适配器:

String[] myAddresses = { "Netherlands", "Spain", "US" };
ArrayAdapter<MyAddress> adapter = new ArrayAdapter<MyAddress>(mContext, R.layout.possible_location_list_layout, myAddresses);
mPossibleLocationListView.setAdapter(adapter);

希望对您有所帮助。

关于Android - ListView - 默认列表项(状态)背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25612033/

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