我正在尝试制作一个列表,其中每行在顶部和底部都有一个文本,另一个图像在右边对齐(如附图所示)。
但我不能。有谁可以帮助我?
示例图片:
答案 0 :(得分:3)
有很多关于它的教程和问题。
仅举几个谷歌搜索:
我没有测试它,但你的行xml应该是这样的:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView android:id="@+id/green_title"
android:textSize="25sp"
android:textColor="#00FF00"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Text1"/>
<TextView android:id="@+id/sub_title"
android:textSize="15sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/green_title"
android:text="Text2"/>
<ImageView android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image"
android:layout_alignParentRight="true"
android:layout_below="@id/green_title"/>
</RelativeLayout>