码迷,mamicode.com
首页 > 移动开发 > 详细

Android—常用组件练习

时间:2016-04-16 21:16:52      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

新建一个文件“practice1.xml”

编写代码如下:

 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="match_parent"
 5     android:layout_height="match_parent">
 6 
 7     <EditText
 8         android:layout_width="match_parent"
 9         android:layout_height="wrap_content"
10         android:hint="To"
11         android:layout_weight="1"/>
12     <EditText
13         android:layout_width="match_parent"
14         android:layout_height="wrap_content"
15         android:hint="Subject"
16         android:layout_weight="1"/>
17     <EditText
18         android:layout_width="match_parent"
19         android:layout_height="wrap_content"
20         android:hint="Message"
21         android:layout_weight="80"
22         android:gravity="top|left"/>
23     <LinearLayout
24         android:layout_width="match_parent"
25         android:layout_height="wrap_content">
26         <Button
27             android:layout_width="0dp"
28             android:layout_height="wrap_content"
29             android:id="@+id/button"
30             android:text="Reset"
31             android:layout_weight="1"
32             android:textAllCaps="false"
33             android:textSize="20sp"/>
34         <Button
35             android:layout_width="0dp"
36             android:layout_height="wrap_content"
37             android:id="@+id/button2"
38             android:text="Send"
39             android:layout_weight="1"
40             android:textAllCaps="false"
41             android:textSize="20sp"/>
42     </LinearLayout>
43 </LinearLayout>

 

运行模拟器效果如下图:

技术分享

Android—常用组件练习

标签:

原文地址:http://www.cnblogs.com/hanazawalove/p/5399216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!