国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

android layout 按比例布局的代碼

2020-04-11 12:30:15
字體:
來源:轉載
供稿:網友

為了創建比例大小的子View,可以將LinearLayout的寬度和高度設為fill_parent, 而將子View的寬度或是高度設為0,然后為子View設置不同權重(weight) ,這樣子View的大小就會權值成比例。

本例使用橫向LinearLayout,LinearLayout的android:layout_width=”match_parent”,表示將使用整個屏幕寬度。

對于LinearLayout的幾個子View,將它們的寬度都定義為0,android:layout_width=”0dip”,然后使用layout_weight 為每個View指定寬度比例,本例為每個TextView都使用了相同的權值,因此四個TextView將會有相同的寬度。這樣對于那些顯示文字比較長的TextView的高度就變為多行。

復制代碼 代碼如下:

<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”android:orientation=”horizontal”
android:layout_width=”match_parent”
android:layout_height=”wrap_content”>

<TextView
android:background=”@drawable/red”
android:layout_width=”0dip”
android:layout_height=”match_parent”
android:layout_weight=”1″
android:text=”@string/linear_layout_7_small”/>

<TextView
android:background=”@drawable/green”
android:layout_width=”0dip”
android:layout_height=”match_parent”
android:layout_weight=”1″
android:text=”@string/linear_layout_7_big”/>

<TextView
android:background=”@drawable/blue”
android:layout_width=”0dip”
android:layout_height=”match_parent”
android:layout_weight=”1″
android:text=”@string/linear_layout_7_small” />

<TextView
android:background=”@drawable/yellow”
android:layout_width=”0dip”
android:layout_height=”wrap_content”
android:layout_weight=”1″
android:text=”@string/linear_layout_7_wrap”/>

</LinearLayout>

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 怀安县| 保康县| 潞城市| 孝感市| 林甸县| 监利县| 西充县| 潜江市| 密山市| 德化县| 雅江县| 临城县| 汤阴县| 如东县| 同仁县| 清苑县| 高碑店市| 延川县| 卓尼县| 屏东市| 和田市| 明星| 双江| 嘉黎县| 济阳县| 胶南市| 威宁| 焦作市| 汉源县| 嫩江县| 佛教| 丹阳市| 五莲县| 西畴县| 昌平区| 贵港市| 同江市| 汕头市| 崇明县| 万年县| 全州县|