クリックしたときにリスト項目の周りにあるこの恐ろしい青い HOLO グローを取り除きたいです。
私は持っている:
<ListView
android:id="@+id/projects_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#00000000"
android:choiceMode="singleChoice"
android:listSelector="@android:color/transparent"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:scrollbars="none" />
しかし、それはまだこのように見えます: http://www.roji.be/IMG_0001.png
更新:OK私のアプリは:
<style name="AppBaseTheme" parent="android:style/Theme.Light">
<item name="android:actionBarStyle">@style/ActionBar</item>
<item name="android:windowBackground">@drawable/gradient_bg</item>
<item name="android:windowContentOverlay">@null</item>
</style>
そして、各リスト項目は LinearLayout でラップされます
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.axxes.netinc"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/listitemshadow" //9patch shadow
android:orientation="vertical"
android:paddingTop="8dp" >