リストビューの位置をデフォルトで強調表示しようとしています。
コードは次のとおりです。私のリストビュー宣言:
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
品目リスト宣言
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dip"
android:textSize="20sp"
android:textStyle="bold" />
</LinearLayout>
私のカスタムセレクターには次のものがあります。
<item
android:drawable="@android:color/holo_green_light"
android:state_selected="true"/>
そして今、デフォルトでリストビューの位置を緑色でマークしたいと思います。Java コード:
listview.setSelector(R.drawable.listselector);
listview.setSelection(20);
ただし、選択した要素は緑色で強調表示されません。見つかった提案された解決策をたくさん試しましたが、何もうまくいきませんでした。何か案は?前もって感謝します。