私はの中でプロジェクトをやっています。です。 background
の色と同様にのtextcolor
をリストビューから変更したいと思います。ここだから、私はいくつかの学生の名前でとcheckbox
を使用して、複数の選択肢の施設でListView
を持っている私のコード実行時にアンドロイドのListViewの背景色を変更します
<?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="match_parent"
android:gravity="right"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ListView
android:id="@+id/listView1"
android:layout_width="265dp"
android:layout_height="366dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:layout_weight="0.00"
android:drawSelectorOnTop="true" >
</ListView>
</LinearLayout>
</LinearLayout>
です。
ListView stud_lst=(ListView) findViewById(R.id.listView1);
stud_lst.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
選択した生徒の背景とテキストの色を変更したいと思います。 私はすでにいくつかの答えを見ましたが、私はそれを得ていません。 私を助けてください。
listview.onclickはカスタム行の背景色とテキスト色を変更します。 –
カスタム行を使用しない他のアイデア –