CustomAdapter 用に次の xml ファイルがあります。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="6dip">
<TextView
android:id="@+id/firstLine"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/nullline"
android:layout_alignParentBottom="true"
android:gravity="center_vertical"
android:text="My Application"
android:textColor="#0099CC" />
<TextView
android:id="@+id/nullline"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_above="@+id/secondLine"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:textColor="#0099CC"
android:text="seas" />
<TextView
android:id="@+id/secondLine"
android:layout_width="fill_parent"
android:layout_height="26dip"
android:layout_alignBottom="@+id/firstLine"
android:layout_alignLeft="@+id/firstLine"
android:ellipsize="marquee"
android:singleLine="true"
android:text="Secondline"
android:textColor="#0099CC" />
</RelativeLayout>
今、追加してこれをフォーマットしようとしましlayout_above
たが、TextViews の 1 つが他の上に表示されます。
表示したいのは
テキストビューワン
テキストビュー 2
テキストビュー 3
layout_below
うまくいかない場合、どうすればこのように表示できますか?