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

首頁 > 系統 > Android > 正文

Android開發之merge結合include優化布局

2019-12-12 06:13:14
字體:
來源:轉載
供稿:網友

merge結合include優化android布局,效果不知道,個人感覺使用上也有很大的局限,不過還是了解一下,記錄下來。

布局文件都要有根節點,但android中的布局嵌套過多會造成性能問題,于是在使用include嵌套的時候我們可以使用merge作為根節點,這樣可以減少布局嵌套,提高顯示速率。

<?xml version="1.0" encoding="utf-8"?><merge xmlns:android="http://schemas.android.com/apk/res/android" > <TextView  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:text="張三" /> <TextView  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:text="李四" /> <TextView  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:text="王五" /></merge>

上面的界面在顯示的時候會自動嵌套到下面的文件中。

<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="horizontal" tools:context="com.example.viewstub.MainActivity" > <include layout="@layout/top"/> <TextView  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:text="@string/hello_world" /> <Button  android:id="@+id/toggle"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:onClick="onClick"  android:text="顯示/隱藏" /> <ViewStub  android:id="@+id/vs"  android:layout_margin="50dp"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:inflatedId="@+id/inflated_id"  android:layout="@layout/view_stub_layout" /></LinearLayout>

我為什么說這個局限性比較大呢?因為merge中的空間顯示的使用會采用主布局文件的方式來顯示,比如我這里主布局是linearlayout且是水平排列,那么merge中的元素顯示出來之后也是水平排列,可是我如果想讓merge中的元素垂直排列呢?抱歉,做不到。

原文鏈接:http://blog.csdn.net/u012702547/article/details/47133647

以上就是本文的全部內容,希望對大家學習Android軟件編程有所幫助。 

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 柳江县| 扎鲁特旗| 互助| 伊宁县| 云南省| 嵊泗县| 札达县| 枣强县| 织金县| 龙山县| 皋兰县| 浦县| 吴桥县| 凤庆县| 乌兰察布市| 芜湖市| 远安县| 望都县| 阳信县| 香港| 陵水| 青阳县| 南丰县| 新闻| 彭州市| 石台县| 佛学| 上犹县| 五峰| 临邑县| 定西市| 鹰潭市| 龙陵县| 邹平县| 洪江市| 同德县| 百色市| 内乡县| 双城市| 耒阳市| 大兴区|