android 按需載入檢視

銳湃發表於2015-08-17

編寫:allenlsy - 原文:http://developer.android.com/training/improving-layouts/loading-ondemand.html

有時你的 Layout 會用到不怎麼重用的複雜檢視。不管它是列表項 細節,進度顯示器,或是撤銷時的提示資訊,你可以僅在需要的時候載入它們,提高 UI 渲染速度。

定義 ViewStub

ViewStub 是一個輕量的檢視,不需要大小資訊,也不會在被加入的 Layout 中繪製任何東西。每個 ViewStub 只需要設定 android:layout 屬性來指定需要被 inflate 的 Layout 型別。

以下 ViewStub 是一個半透明的進度條覆蓋層。功能上講,它應該只在新的資料項被匯入到應用程式時可見。

<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" />

載入 ViewStub Layout

當你要載入用 ViewStub 宣告的 Layout 時,要麼用 setVisibility(View.VISIBLE) 設定它的可見性,要麼呼叫其 inflate() 方法。

((ViewStub) findViewById(R.id.stub_import)).setVisibility(View.VISIBLE);
// or
View importPanel = ((ViewStub) findViewById(R.id.stub_import)).inflate();

注意:inflate() 方法會在渲染完成後返回被 inflate 的檢視,所以如果你需要和這個 Layout 互動的話, 你不需要再呼叫 findViewById() 去查詢這個元素,。

一旦 ViewStub 可見或是被 inflate 了,ViewStub 元素就不存在了。取而代之的是被 inflate 的 Layout,其 id 是 ViewStub 上的 android:inflatedId 屬性。(ViewStub 的 android:id 屬性僅在 ViewStub 可見以前可用)

注意:ViewStub 的一個缺陷是,它目前不支援使用 <merge/> 標籤的 Layout 。


自:http://hukai.me/android-training-course-in-chinese/performance/improving-layouts/loading-ondemand.html

相關文章