我已经按照http://www.dev-smart.com/archives/34中的描述创建了水平列表视图。
一切正常,唯一的问题是我们单击元素时获得的效果(单击的单元格的颜色变化)不在自定义水平列表中。
有没有办法克服这个问题
我已经按照http://www.dev-smart.com/archives/34中的描述创建了水平列表视图。
一切正常,唯一的问题是我们单击元素时获得的效果(单击的单元格的颜色变化)不在自定义水平列表中。
有没有办法克服这个问题
在我的应用程序中,我已将以下文件添加到可绘制文件夹中,以便在选择列表项后更改其颜色:
List_selector.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_selected="false"
android:state_pressed="false"
android:drawable="@drawable/gradient_bg" />
<item android:state_pressed="true"
android:drawable="@drawable/gradient_bg_hover" />
<item android:state_selected="true"
android:state_pressed="false"
android:drawable="@drawable/gradient_bg_hover" />
</selector>
渐变bg.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#f1f1f2"
android:centerColor="#e7e7e8"
android:endColor="#cfcfcf"
android:angle="270" />
</shape>
gradient_bg_hover.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#A6A6A6"
android:centerColor="#757575"
android:endColor="#4A4A4A"
android:angle="270" />
</shape>
希望这可以帮助 :)