2011年6月9日

Layout依比例%分配寬度

類似html中的%width語法,android layout中也有相對應的layout_weight和weightSum.
    <LinearLayout  ...  >
        <TextView ...  android:layout_weight="1"  />
        <TextView ...  android:layout_weight="1"  />
        <TextView ...  android:layout_weight="1"  />
    </LinearLayout>
 
(... 省略)

沒有留言: