Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 初級開發 >> layout資源包含,android開發必讀

layout資源包含,android開發必讀

編輯:初級開發

有時候我們在一個android程序中可能會復用布局文件,這時可以在一個xml文件中復用過去的布局文件,但是和常規的使用不同的是,需要加上類似包含頭文件一樣的include關鍵字,比如下面我們需要包含layout文件夾下的vIEw.XML布局文件,需要<include layout="@layout/vIEw" />  這樣下,完整的如下,大家可以試一試。

<?XML version="1.0" encoding="utf-8"?>  
<LinearLayout XMLns:android="http://schemas.android.com/apk/res/android
    android:orIEntation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    >  
<TextVIEw    
    android:layout_width="wrap_content"   
    android:layout_height="wrap_content"   
    android:text="@string/cwj" 
    />
 
<include layout="@layout/vIEw" /> 
<include android:id="@+id/block" layout="@layout/item" />  

<TextVIEw    
    android:layout_width="wrap_content"   
    android:layout_height="wrap_content"   
    android:text="@string/android123" 
    />  
</LinearLayout> 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved