我正在尝试制作一个列表,其中图像始终位于布局的右侧。同时,如果没有图像,我希望主题文本填满整个布局。
这就是我希望
在 Image is Hide
With Image时实现的目标
当前输出:
文本前面的图像。
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:padding="6dip" android:layout_height="?android:attr/listPreferredItemHeight">
<TextView
android:id="@+id/subject"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:text="Apple Orange Apple Orange Apple Orange Apple Orange Apple Orange Apple Orange"/>
<TextView
android:id="@+id/cdate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentBottom="true"
android:textColor="#8000FF"
android:text="Date" />
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignRight="@id/subject"
android:src="@drawable/icon" />
</RelativeLayout>