歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android中使用ViewStub來提高UI的加載的性能

首先看下API中的ViewStub

    

          根據的文檔的說明,ViewStub是一種默認不可見的試圖,它沒有大小,所以不能被改變,也不能通過某些把viewstub添加到布局當中來,

   不過我們可以使用inflate()來吧ViewStub中的試圖增加進行,這樣可以實現動態的添加試圖,不必要每次在onCreate()的時候就加載布局,可以提高我們的性能。

    

    Demo中的使用方法:

     1:新建布局文件 設置<ViewStub>節點

     2: 在Activity中進行按鈕點擊  viewStub = (ViewStub) findViewById(R.id.mystub);

     3: View view = viewStub.inflate();  把ViewStub中的View增添進來

  

  下面Demo源代碼:

  主Activity類:

   

[java]
  1. package com.jiangqq.viewstubdemo;  
  2.   
  3. import Android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.view.View;  
  6. import android.view.View.OnClickListener;  
  7. import android.view.ViewStub;  
  8. import android.widget.Button;  
  9.   
  10. public class ViewStubActivity extends Activity {  
  11.     private Button btn;  
  12.     private ViewStub viewStub;  
  13.   
  14.     @Override  
  15.     public void onCreate(Bundle savedInstanceState) {  
  16.         super.onCreate(savedInstanceState);  
  17.         setContentView(R.layout.main);  
  18.         btn = (Button) findViewById(R.id.btn);  
  19.         btn.setOnClickListener(new OnClickListener() {  
  20.   
  21.             @Override  
  22.             public void onClick(View v) {  
  23.                 viewStub = (ViewStub) findViewById(R.id.mystub);  
  24.                 View view = viewStub.inflate();  
  25.                 v.setEnabled(false);  
  26.             }  
  27.         });  
  28.     }  
  29. }  

  布局文件:

   main.xml:

   

[html]
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <Button  
  8.         android:id="@+id/btn"  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content"  
  11.         android:text="點擊確定" />  
  12.   
  13.     <ViewStub  
  14.         android:id="@+id/mystub"  
  15.         android:layout_width="wrap_content"  
  16.         android:layout_height="wrap_content"  
  17.         android:layout="@layout/demo_viewstub" >  
  18.     </ViewStub>  
  19.   
  20. </LinearLayout>  
  demo_viewstub.xml:
   [html]
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:id="@+id/layout"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent"  
  6.     android:orientation="vertical" >  
  7.   
  8.     <TextView  
  9.         android:id="@+id/tv"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content"  
  12.         android:text="ViewStubDemo_Byjiangqq" />  
  13.   
  14. </LinearLayout>  
  效果截圖:

  

Copyright © Linux教程網 All Rights Reserved