-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には、3つのLinearLayoutがあります。最初のLinearLayoutでは、100pxを設定する必要があります。3番目のLinearLayoutでは、200pxを設定する必要があります。そして、2番目のLinearLayoutの他のすべてのサイズ。

4

1 に答える 1

1

固定サイズの使用は、異なる画面解像度でレイアウトが壊れる可能性があるため、Androidではお勧めしません。android:layout_weightこのタイプの画面比率を定義するために使用する必要があります。最後に、レイアウトサイズの定義にはpxを使用せず、テキストサイズの定義にはptを使用し、それぞれdpとspを使用します。

于 2012-05-24T11:02:48.063 に答える