我正在嘗試獲取以下設計。考慮它是一個列表項。Android中的圖像,文本/圖片和圖像
但我下面的設計,它不給我design.The textviews來吧左圖像的頂部。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_person_black_24dp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:id="@+id/userimage" />
<TextView
android:text="Text1"
android:layout_toRightOf="@id/userimage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/username"/>
<TextView
android:text="Text2"
android:layout_below="@id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_keyboard_arrow_right_black"
android:layout_alignParentRight="true"
android:layout_centerVertical="true" />
</RelativeLayout >
'RelativeLayout'更適合這項任務 – Sunshinator