以谢尔盖的代码为基础(我相信这并不能完全解决问题)。我已经指定了比例1/2:1/1:1/3(对于图像:字符串:日期);
<?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:src="@drawable/image"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2" />
<TextView
android:text="Lorem ipsum dolor sit amet, consectetuer adipiscing elit"
android:gravity="center_horizontal"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<TextView
android:text="23.10.2010 23:34:52"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="3" />
</LinearLayout>