すべての項目に対して 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);