我有ListView(派生的JazzyListView),它位于我活动的主要布局中:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/lib/com.toto.toto"
android:id="@+id/main"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/background" >
<com.twotoasters.jazzylistview.JazzyListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
app:effect="cards"
app:max_velocity="0"
app:only_animate_fling="false"
app:only_animate_new_items="false"
/>
</RelativeLayout>
主布局设置了背景颜色。
对于我的列表,我使用具有此布局的项目:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:background="@color/item_background" >
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp" />
...
</RelativeLayout>
此处@ color / item_background与@color / background的值不同。 所以我的主要布局有特定的背景颜色和列表项。
使用该方法,当我点击列表中的项目时,没有选定的背景状态,并且我的列表中没有选择应用的经典背景。
有人会知道我如何创建自定义选择器(可能?)或其他东西来为我的项目设置自定义颜色,还有当我点击项目时应用经典选定的背景效果?
感谢您的帮助。
西尔
答案 0 :(得分:1)
您首先需要创建一个自定义选择器,您将其用作列表项的背景,类似于以下内容:
item_background_selectable.xml (to be created in a drawable folder)
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:exitFadeDuration="@android:integer/config_shortAnimTime">
<item android:state_pressed="true"
android:drawable="@color/item_background_pressed" />
<item android:drawable="@android:color/item_background" />
</selector>
然后在列表项布局中使用该自定义选择器:
android:background="@drawable/item_background_selectable"
希望这会有所帮助; - )