0
我很想爲Android設置一個XML格式的佈局,在不同的顯示器上顯示四行矩形圖像,每行兩行。 任何人都可以幫助我嗎? 我能得到的最好的是這樣的:Android XML佈局自動調整
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/logo"
android:layout_marginTop="12dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="16dp" />
<ScrollView
android:layout_marginLeft="5sp"
android:layout_marginRight="5sp"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:orientation="horizontal"
android:gravity="center"
android:layout_weight="0.45">
<ImageView
android:layout_width="0dip"
android:layout_height="match_parent"
android:src="@drawable/img1"
android:layout_weight="0.45" />
<LinearLayout
android:layout_width="0dip"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="center"
android:layout_weight="0.1"/>
<ImageView
android:layout_width="0dip"
android:layout_height="match_parent"
android:src="@drawable/img2"
android:layout_weight="0.45" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:orientation="vertical"
android:layout_weight="0.1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:orientation="horizontal"
android:gravity="center"
android:layout_weight="0.45">
<ImageView
android:layout_width="0dip"
android:layout_height="match_parent"
android:src="@drawable/img3"
android:layout_weight="0.45" />
<LinearLayout
android:layout_width="0dip"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="center"
android:layout_weight="0.1" />
<ImageView
android:layout_width="0dip"
android:layout_height="match_parent"
android:src="@drawable/img4"
android:layout_weight="0.45" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
我想有類似Windows Phone的瓷磚的佈局...... 這是正確的使用屬性「layout_weight」爲了這個目的?