如何在首次显示列表时设置列表项的默认背景颜色?
似乎很容易......但等等......
上下文:在一个安装的弹出窗口中,我想显示一个项目列表。我想让它们的初始颜色为“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>
感谢您的帮助。
答案 0 :(得分:1)
Pfff,发现它......
见http://www.oneminuteinfo.com/2012/12/android-set-selection-color-in-listview.html。这是一个很棒的教程。
通过列表视图设置选择器不起作用。通过列表视图设置选择器项目有效!
汇总...... listitem条目:
<?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
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);
希望这会对你有所帮助。