Android 使用LinearLayout 縱向/橫向可控的比例分割畫面 XML

Android 使用LinearLayout 縱向/橫向可控的比例分割畫面 XML

Android 使用LinearLayout 縱向/橫向可控的比例分割畫面 XML


縱向『1(1/2):1(1/2)』
<LinearLayout
android:id=”@+id/Line_left04″
                android:layout_width=”0dp” 
android:layout_height=”match_parent”  
                android:layout_weight=”1″ 
android:orientation=”vertical” >
        <LinearLayout
                android:id=”@+id/Line_right04″
        android:layout_width=”0dp” 
        android:layout_height=”match_parent”  
                android:layout_weight=”1″
                android:orientation=”vertical” >
—-
橫向『1(1/4):3(3/4)』
        <LinearLayout
            android:layout_width=”match_parent”
            android:layout_height=”0dp”
            android:orientation=”horizontal” 
            android:layout_weight=”1″>
        <LinearLayout
            android:layout_width=”match_parent”
            android:layout_height=”0dp”
            android:orientation=”horizontal” 
            android:layout_weight=”3″>


 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *