您好,登錄后才能下訂單哦!
weight屬性,從字面上理解是比重的意思,是和布局里其他部件相比較而言的。
1:在狀態設置再orientation為horizontal、寬度設置為fill_parent、比例一個設置為1,一個設置為2的時候,如截圖所示:
此時顯示的狀態是第一個長度和第二個長度的比例是2:1,就是第一個長度要長一些。
2:現在修改一下放置的狀態,修改成垂直放置android:orientation="vertical",其他條件不變,
如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.Test0101_21.MainActivity$PlaceholderFragment" >
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/hello_world" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="@string/hello" />
</LinearLayout>
其運行結果是部件以上下進行排列,第二個部件和第一個部件寬度的比例是2:1,
結論:在水平方向上,比重越大,所顯示的面積就越大,比重越小,顯示的面積就越小。
在垂直方向上,比重越大,起顯示的面積就越小,比重越小,起顯示的面積就越大。
在水平方向上和垂直方向上其作用是相反的。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。