Если вы хотите использовать RelativeLayouts, чтобы использовать лучшие возможности, нет необходимости использовать RelativeLayouts / LinearLayouts в других RelativeLayouts / LinearLayouts.
Примеры использования RelativeLayouts приведены в:
http://developer.android.com/resources/tutorials/views/hello-relativelayout.html
http://android -developers.blogspot.com / 2009/02 / android-layout-tricks-1.html
в крачкахиз того, что вы ищете, это то, что вы ищете:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/image"
android:text="Name"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/name"
android:layout_below="@+id/name"
android:text="Description"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/date_created"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/name"
android:layout_alignBottom="@+id/name"
android:layout_alignParentRight="true"
android:text="DateCreated"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/date_planned"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/description"
android:layout_alignBottom="@+id/description"
android:layout_alignParentRight="true"
android:text="DatePlanned"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout>
Обратите внимание, что здесь есть жестко запрограммированные строки, чтобы вы могли видеть текст.Убедитесь, что вы удалили их и используете файл strings.xml.