android中如何使用include标签

来源:爱站网时间:2020-12-28编辑:网友分享
在android中布局文件可以帮助我们方便的对UI控件进行界面上的定位和一些属性设置,为了不让UI控件显得臃肿因此系统为我们提供了include标签,那么你知道android中如何使用include标签吗?

在android中布局文件可以帮助我们方便的对UI控件进行界面上的定位和一些属性设置,为了不让UI控件显得臃肿因此系统为我们提供了include标签,那么你知道android中如何使用include标签吗?

在一个项目中我们可能会需要用到相同的布局设计,如果都写在一个xml文件中,代码显得很冗余,并且可读性也很差,所以我们可以把相同布局的代码单独写成一个模块,然后用到的时候可以通过 标签来重用layout代码。
app_title.xml:

 


   android:background="@drawable/bt" xmlns:android="http://schemas.android.com/apk/res/android">

      android:layout_width="wrap_content" android:layout_centerInParent="true" android:layout_height="wrap_content"/>  
      android:layout_alignParentRight="true" android:focusable="false" android:textColor="@color/white"
   android:background="@drawable/okbutton" android:layout_marginRight="3px"/>


app_tradelogin.xml:

 

 

 




  android:layout_height="fill_parent" android:layout_centerInParent="true" xmlns:android="http://schemas.android.com/apk/res/android">
    android:layout_height="wrap_content" android:paddingLeft="10px" android:paddingTop="6px" android:paddingRight="10px" >
  
        android:layout_height="fill_parent" android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android" android:stretchColumns="1">
    
    
     
     
     

    


    
     
     
    


    
     
     
    


    
     
     
    


    
     
     
    


    
     
     
    

   
  


  

          android:layout_width="fill_parent" android:orientation="horizontal">

            android:layout_width="fill_parent" android:orientation="horizontal" android:layout_weight="1">
      
      
     
 
            android:layout_width="fill_parent" android:orientation="horizontal" android:layout_weight="1">

      
      
       
    

         android:layout_width="fill_parent" android:orientation="horizontal">

            android:gravity="center">

                        android:layout_height="50px" android:textSize="22dp" android:text="@string/login" android:layout_weight="1"
         android:focusable="false" android:textColor="@color/white" android:background="@drawable/buttonl"/>
     

            android:layout_width="fill_parent" android:gravity="center">
      
     
  
 
 


app_bottom.xml:

 

 

 



  android:layout_height="wrap_content" android:layout_alignParentBottom="true"
  xmlns:android="http://schemas.android.com/apk/res/android">

    android:layout_height="wrap_content" android:background="@drawable/light">
       android:layout_alignParentLeft="true"/>
  
 

    android:layout_height="wrap_content" android:background="@drawable/mainmenu">
      android:textColor="@color/white" android:text="" android:background="@drawable/button1"/>

      android:textColor="@color/white" android:text="" android:background="@drawable/button1"/>
      android:textColor="@color/white" android:text="" android:background="@drawable/button1"/>

      android:textColor="@color/white" android:text="" android:background="@drawable/button1"/>

      android:textColor="@color/white" android:text="" android:background="@drawable/button1"/>

      android:textColor="@color/white" android:text="" android:background="@drawable/button1"/>
 


tradelogin_portrait.xml:

 

 

 



 xmlns:android="http://schemas.android.com/apk/res/android">

 
 
 
 
 

 


效果如下:

文中主要是小编为大家介绍android中如何使用include标签的内容,大家学习到了多少呢?我们在学习的时候也要常常温故而知新,这样才能牢固的掌握。

上一篇:Android获得已安装应用大小的方法

下一篇:android如何跳转进市场

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载