Apa itu <ViewStub/>

ViewStub adalah sebuah view yang tak terlihat dan berukuran nol dan sangat cocok untuk lazily inflate layout resources saat run time. Jadi ViewStub ini sangatlah irit memori sehingga sangat pas sekali untuk optimasi layout. Begitulah kira-kira.

Perbedaan <ViewStub/> dan <Include/>

Lalu apa bedanya dengan include. Sekilas memang sama, tapi sakjane beda lah.

The <include /> will just include the xml contents in your base xml file as if the whole thing was just a single big file. It’s a nice way to share layout parts between different layouts.


The <ViewStub/> is a bit different because it is not directly included, and will be loaded only when you actually use it/need it, ie, when you set its visibility to VISIBLE (actually visible) or INVISIBLE (still not visible, but its size isn’t 0 anymore). This a nice optimization because you could have a complex layout with tons of small views or headers anywhere, and still have your Activity load up really fast. Once you use one of those views, it’ll be loaded.

Kemudian gambaran betapa ngiritnya ViewStub ini dapat kita lihat pada gambar berikut:

Sumber: http://android-developers.blogspot.co.id/
Sumber: http://android-developers.blogspot.co.id/
Sumber : http://android-developers.blogspot.co.id/
Sumber : http://android-developers.blogspot.co.id/

Penggunaan ViewStub

Dengan ViewStub ini kita dapat melakukan inflating ketika dibutuhkan saja.

Referensi:
http://developer.android.com/reference/android/view/ViewStub.html
http://android-developers.blogspot.co.id/2009/03/android-layout-tricks-3-optimize-with.html

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.