Android的布局複用與最佳化

來源:互聯網
上載者:User

標籤:


在布局最佳化中,Android的官方提到了這三種布局<include />、<merge />、<ViewStub />,並介紹了這三種布局各有的優勢,下面也是簡單說一下怎麼使用.
1、布局重用<include /><include />標籤能夠重用布局檔案,簡單的使用如下:
 
<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/layout_title"/>              <TextView android:layout_width=”match_parent”                   android:layout_height="wrap_content"                   android:text="@string/hello"                   android:padding="10dp" />         ...  </LinearLayout>  

1)<include />標籤可以使用單獨的layout屬性,這個也是必須使用的。
2)標籤若指定了ID屬性,而你的layout也定義了ID,則你的layout的ID會被覆蓋
3)在include標籤中所有的android:layout_*都是有效,前提是必須要寫layout_width和layout_height兩個屬性。
4)布局中可以包含兩個相同的include標籤,引用時可以使用如下方法解決
View bookmarks_container_2 = findViewById(R.id.bookmarks_favourite);bookmarks_container_2.findViewById(R.id.bookmarks_list);  
2、減少視圖層級<merge /><merge/>標籤在UI的結構最佳化中起著非常重要的作用,它可以刪減多餘的層級,最佳化UI。<merge/>多用於替換FrameLayout或者當一個布局包含另一個時,<merge/>標籤消除視圖階層中多餘的視圖組。例如你的主布局檔案是垂直布局,引入了一個垂直布局的include,這是如果include布局使用的LinearLayout就沒意義了,使用的話反而減慢你的UI表現。這時可以使用<merge/>標籤最佳化。
<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> 

現在,當你添加該布局檔案時(使用<include />標籤),系統忽略<merge />節點並且直接添加兩個Button。
更多<merge />介紹可以參考《Android Layout Tricks #3: Optimize by merging》
3、需要時使用<ViewStub /><ViewStub />標籤最大的優點是當你需要時才會載入,使用他並不會影響UI初始化時的效能。各種不常用的布局想進度條、顯示錯誤訊息等可以使用<ViewStub />標籤,以減少記憶體使用量量,加快渲染速度。<ViewStub />是一個不可見的,大小為0的View。 <ViewStub />標籤使用如下:

   
<ViewStub         android:id="@+id/stub_import"         android:inflatedId="@+id/panel_stub"         android:layout="@layout/progress_overlay"         android:layout_width="fill_parent"         android:layout_height="wrap_content"         android:layout_gravity="bottom" />

當你想載入布局時,可以使用下面其中一種方法:
 
((ViewStub) findViewById(R.id.stub_import)).setVisibility(View.VISIBLE);  // or  View importPanel = ((ViewStub) findViewById(R.id.stub_import)).inflate();

當調用inflate()函數的時候,ViewStub被引用的資源替代,並且返回引用的view。 這樣程式可以直接得到引用的view而不用再次調用函數findViewById()來尋找了。
註:ViewStub目前有個缺陷就是還不支援 <merge /> 標籤.
更多<ViewStub />標籤介紹可以參考《Android Layout Tricks #3: Optimize with stubs》





歡迎掃描二維碼,關注公眾帳號

Android的布局複用與最佳化

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.