-1

すべての項目に対して 2 行のリスト ビューがあります。それは次のようになります。

Title of item1

Subtitle of item1

コードで 2 行目の色とサイズを変更する方法はありますか?
両方とも 1 を共有しTextViewているので、それを編集することはできません。2 つのテキスト ビューを使用できますが、その設定方法がわかりません。
ただし、リスト ビューにカスタム xml を使用しています。

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:orientation="horizontal">

これが私のカスタム リスト ビュー xml です。

<RelativeLayout android:id="@+id/linearLayout1" 
android:layout_width="wrap_content" 
android:layout_height="match_parent" 
android:layout_margin="7dip">

    <TextView
        android:id="@+id/label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Medium Text"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="#474747"
         />
 </RelativeLayout>

</LinearLayout>

リストビューにxmlを割り当てる方法は次のとおりです。

    ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,R.layout.row, R.id.label, arrayList);
    lv.setAdapter(arrayAdapter); 
4

1 に答える 1

0

ArrayAdapter を 2 つの Textview で使用できます

ArrayAdapter で simple_list_item_2 を使用する

リンクのように

リンクごとに、row.getText1()、row.getText2()を使用してテキストビューを取得するので、色を設定できます

また

リンクのようにカスタムアダプターを使用できます

于 2012-06-22T12:28:28.053 に答える