-1

我有下一个 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" >

    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" 
        android:layout_weight=".10">
        <TextView 
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="#aa0000"
            android:text="top"/>    

    </LinearLayout>
    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" 
        android:layout_weight=".70">

        <ScrollView 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="#00aa00">
            <LinearLayout 
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">
                <TextView 

                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"            
                    android:textSize="50pt"
                    android:text="center">
                </TextView>
                <TextView 

                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"            
                    android:textSize="50pt"
                    android:text="center">
                </TextView>
                <TextView 

                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"            
                    android:textSize="50pt"
                    android:text="center">
                </TextView>
                <TextView 

                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"            
                    android:textSize="50pt"
                    android:text="center">
                </TextView>
                <TextView 

                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"            
                    android:textSize="50pt"
                    android:text="center">
                </TextView>
            </LinearLayout>
        </ScrollView>
    </LinearLayout>    
    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" 
        android:background="@android:color/white"
        android:layout_weight=".20">

        <TextView 
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="#0000aa"
            android:text="bottom"/> 
       </LinearLayout>        


</LinearLayout>

在主要的线性布局中,我有三个线性布局。对于第一个 LinearLayout,我需要设置 100px。对于第三个 LinearLayout,我需要设置 200px。以及第二个 LinearLayout 的所有其他尺寸。

4

1 回答 1

1

不建议在 Android 中使用固定大小,因为它可能会破坏您在不同屏幕分辨率下的布局。您应该使用android:layout_weight来定义这种类型的屏幕比例。最后,不要使用 px 来定义布局大小,不要使用 pt 来定义文本大小,分别使用 dp 和 sp。

于 2012-05-24T11:02:48.063 回答