I、すなわち、CustomListViewを有する背景画像とのTextViewを含む、リストビューとそのテキストの色
項目はiが背景画像やフォント色を変更する必要が選択さ、現在私は選択された行の背景を変更することができXMLを使用してリストビューが、私はテキストの色を変更することはできません。
デフォルトでは、リストビュー内の項目をクリックすると、テキストの色を白に変更する必要があります。
は私のcustomlistview
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="29dp"
android:id="@+id/appcategoryLinearLayout"
android:background="@drawable/appcategorybg1"
android:gravity="left|center_vertical"
>
<TextView
android:gravity="left|center_vertical"
android:text="fdsfsdfsdfdsfdsfdsf"
android:paddingLeft="8dp"
android:textSize="8dp"
android:textColor="@color/black"
android:id="@+id/appCategoryNameTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
としてこの
使用のTextView変数のようにいくつかのことを行うことができますXMLレイアウトを投稿してくださいできますか? –
私は書き込みカラーxmlを持っていますが、これをtextcolorとして設定しましたが、今度は – Bytecode
をxmlで変更するのではなく、プログラマチックに簡単にしています... onClickListenerでtxtを使用してテキストを変更するだけです。 setColor(int);メソッド – silverFoxA