首页 > 移动平台 > 详细

Android短信页面

时间:2016-04-19 22:50:22      阅读:248      评论: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="match_parent"
 5     android:layout_height="match_parent"
 6     android:padding="10dp">
 7    
 8      <EditText
 9             android:layout_width="match_parent"
10             android:layout_height="wrap_content"
11             android:hint="To"/>
12     
13         android:layout_width="match_parent"
14         android:layout_height="wrap_content"
15         android:layout_weight="1">
16         <EditText
17             android:layout_width="match_parent"
18             android:layout_height="wrap_content"
19             android:hint="Subject"/>
20     
21         android:layout_width="match_parent"
22         android:layout_height="wrap_content"
23         android:layout_weight="4">
24         <EditText
25             android:layout_width="match_parent"
26             android:layout_height="wrap_content"
27             android:hint="Massage"
28             android:height="360dp"
29             android:gravity="top"/>
30     <LinearLayout
31         android:layout_width="match_parent"
32         android:layout_height="wrap_content"
33         android:layout_weight="1">
34         <Button
35             android:layout_width="0dp"
36             android:layout_height="wrap_content"
37             android:text="Reset"
38             android:id="@+id/button3"
39             android:layout_weight="1"/>
40 
41         <Button
42             android:layout_width="0dp"
43             android:layout_height="wrap_content"
44             android:text="Send"
45             android:id="@+id/button4"
46             android:layout_weight="1"/>
47 
48     </LinearLayout>
49     
50 </LinearLayout>
短信界面

技术分享

Android短信页面

原文:http://www.cnblogs.com/arxk/p/5410531.html

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