首页 > 移动平台 > 详细

Android应用程序使用两个LinearLayout编排5个Button控件

时间:2017-11-28 23:52:52      阅读:320      评论:0      收藏:0      [点我收藏+]

学习存档:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:orientation="vertical"
 4     android:layout_width="fill_parent"
 5     android:layout_height="fill_parent">
 6     <Button android:text ="按钮一"
 7         android:layout_width="fill_parent"
 8         android:layout_height="wrap_content"
 9         android:gravity="left"/>
10     <Button android:text="按钮二"
11         android:layout_width="fill_parent"
12         android:layout_height="wrap_content"
13         android:gravity="center"/>
14     <Button android:text="按钮三"
15         android:layout_width="fill_parent"
16         android:layout_height="wrap_content"
17         android:gravity="right"/>
18 <LinearLayout android:orientation="horizontal"
19         android:layout_width="fill_parent"
20         android:layout_height="wrap_content">
21     <Button android:text="按钮四"
22         android:layout_width="wrap_content"
23         android:layout_height="wrap_content"
24         android:layout_weight="0.25"/>
25     <Button android:text="按钮五"
26         android:layout_width="wrap_content"
27         android:layout_height="wrap_content"
28         android:layout_weight="0.75"/>
29     </LinearLayout>
30 </LinearLayout>

效果如下:

技术分享图片

 

Android应用程序使用两个LinearLayout编排5个Button控件

原文:http://www.cnblogs.com/ECJTUACM-873284962/p/7912780.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!