Android抽象布局——include、merge 、ViewStub詳解
在布局優(yōu)化中,Androi的官方提到了這三種布局<include />、<merge />、<ViewStub />,并介紹了這三種布局各有的優(yōu)勢,下面也是簡單說一下他們的優(yōu)勢,以及怎么使用,記下來權(quán)當(dāng)做筆記。
1、布局重用<include />
<include />標(biāo)簽?zāi)軌蛑赜貌季治募?,簡單的使用如下?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:background="@color/app_bg"
android:gravity="center_horizontal">
<include layout="@layout/titlebar"/>
<TextView android:layout_width=”match_parent”
android:layout_height="wrap_content"
android:text="@string/hello"
android:padding="10dp" />
...
</LinearLayout>
1)<include />標(biāo)簽可以使用單獨的layout屬性,這個也是必須使用的。
2)可以使用其他屬性。<include />標(biāo)簽若指定了ID屬性,而你的layout也定義了ID,則你的layout的ID會被覆蓋,解決方案。
3)在include標(biāo)簽中所有的Android:layout_*都是有效的,前提是必須要寫layout_width和layout_height兩個屬性。
4)布局中可以包含兩個相同的include標(biāo)簽,引用時可以使用如下方法解決(參考):
View bookmarks_container_2 = findViewById(R.id.bookmarks_favourite); bookmarks_container_2.findViewById(R.id.bookmarks_list);
2、減少視圖層級<merge />
<merge/>標(biāo)簽在UI的結(jié)構(gòu)優(yōu)化中起著非常重要的作用,它可以刪減多余的層級,優(yōu)化UI。<merge/>多用于替換FrameLayout或者當(dāng)一個布局包含另一個時,<merge/>標(biāo)簽消除視圖層次結(jié)構(gòu)中多余的視圖組。例如你的主布局文件是垂直布局,引入了一個垂直布局的include,這是如果include布局使用的LinearLayout就沒意義了,使用的話反而減慢你的UI表現(xiàn)。這時可以使用<merge/>標(biāo)簽優(yōu)化。
<merge xmlns:android="http://schemas.android.com/apk/res/android"> <Button android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/add"/> <Button android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/delete"/> </merge>
現(xiàn)在,當(dāng)你添加該布局文件時(使用<include />標(biāo)簽),系統(tǒng)忽略<merge />節(jié)點并且直接添加兩個Button。更多<merge />介紹可以參考《Android Layout Tricks #3: Optimize by merging》
3、需要時使用<ViewStub />
<ViewStub />標(biāo)簽最大的優(yōu)點是當(dāng)你需要時才會加載,使用他并不會影響UI初始化時的性能。各種不常用的布局想進(jìn)度條、顯示錯誤消息等可以使用<ViewStub />標(biāo)簽,以減少內(nèi)存使用量,加快渲染速度。<ViewStub />是一個不可見的,大小為0的View。<ViewStub />標(biāo)簽使用如下:
<ViewStub android:id="@+id/stub_import" android:inflatedId="@+id/panel_import" android:layout="@layout/progress_overlay" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="bottom" />
當(dāng)你想加載布局時,可以使用下面其中一種方法:
((ViewStub) findViewById(R.id.stub_import)).setVisibility(View.VISIBLE); // or View importPanel = ((ViewStub) findViewById(R.id.stub_import)).inflate();
當(dāng)調(diào)用inflate()函數(shù)的時候,ViewStub被引用的資源替代,并且返回引用的view。 這樣程序可以直接得到引用的view而不用再次調(diào)用函數(shù)findViewById()來查找了。
注:ViewStub目前有個缺陷就是還不支持 <merge /> 標(biāo)簽。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android Studio 利用Splash制作APP啟動界面的方法
這篇文章主要介紹了Android Studio 利用Splash制作APP啟動界面,本文通過圖文并茂的形式給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-05-05
Android?Flutter實現(xiàn)自由落體彈跳動畫效果
粒子運動是將對象按照一定物理公式進(jìn)行的自定義軌跡運動,與普通動畫不同的是,它沒有強(qiáng)制性的動畫開始到結(jié)束的時間概念。本文將利用Flutter實現(xiàn)自由落體彈跳動畫效果,感興趣的小伙伴可以學(xué)習(xí)一下2022-10-10
Android webview如何加載HTML,CSS等語言的示例
本篇文章主要介紹了Android webview如何加載HTML,CSS等語言的示例,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-11-11
Android編程實現(xiàn)檢測當(dāng)前電源狀態(tài)的方法
這篇文章主要介紹了Android編程實現(xiàn)檢測當(dāng)前電源狀態(tài)的方法,涉及Android針對當(dāng)前電源的電量、容量、伏數(shù)、溫度等的檢測技巧,非常簡單實用,需要的朋友可以參考下2015-11-11

