我想有一個Llayout這樣的: RealtiveLayout 2的ImageView和TextView的3
到目前爲止,我得到這個佈局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/game1_background"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:id="@+id/flag1"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:id="@+id/team1"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:id="@+id/team2"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:id="@+id/flag2"
/>
</RelativeLayout>
但是,這是行不通的。有人可以說爲什麼嗎? 感謝
爲什麼你只使用相對佈局的任何具體原因,因爲我認爲這可以很容易地使用線性佈局來完成。 –
我認爲這會更好。但我想它也適用於LinearLayout – Ahmad