私はFedorのListView実装から始めました。ListViewアイテムの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">
<ImageView
android:id="@+id/image"
android:layout_width="50dip"
android:layout_height="50dip" android:src="@drawable/stub" android:scaleType="centerCrop"/>
<TextView
android:id="@+id/name"
android:layout_width="0px"
android:layout_height="0px"
android:layout_weight="0" android:textSize="20dip" android:layout_marginLeft="10dip"/>
<TextView
android:id="@+id/address"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1" android:textSize="16dip" android:layout_marginLeft="10dip"/>
</LinearLayout>
デバイスに表示されているのは、ImageViewと2つのTextViewが左から右に順番に表示されていることです。
私が欲しいのは、右端にあるImageView(これはすでに正しい)、imageviewの右側にある名前TextView(これは正しい)、そして名前TextViewの下にあるアドレスTextViewです。これを適切にレイアウトする方法を理解できていません。
名前に新しい行を追加し、その後にアドレステキストを含めることができることはわかっていますが、これら2つの要素のフォントサイズを変えたいので、これはオプションではありません。本当にありがとう!