您的位置:首页 > 移动开发 > Android开发

Android短信页面

2016-04-19 22:37 561 查看
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp">

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="To"/>

android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Subject"/>

android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="4">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Massage"
android:height="360dp"
android:gravity="top"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Reset"
android:id="@+id/button3"
android:layout_weight="1"/>

<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Send"
android:id="@+id/button4"
android:layout_weight="1"/>

</LinearLayout>

</LinearLayout>


短信界面

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: