当前位置:操作系统 > 安卓/Android >>

Andriod入门(1)--布局

布局文件放在 res/layout/ 下
 
在Activity中引用此布局:
Java代码 
setContentView(R.layout.main);           # main 与布局文件名一致 
 
一:线性布局
Xml代码 
<?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" 
    > 
 
<!--在此布局上的控件--> 
 
</LinearLayout> 
 
Xml代码 
# 用来指定布局方向 
android:orientation="vertical"                       # 垂直方向 
android:orientation="horizontal"                     # 水平方向 
 
二:表格布局
三:相对布局
四:嵌套布局
五:自定义布局

作者“ahcming”
 

补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,