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

Android发送短信界面

时间:2016-04-18 09:57:58      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

<?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">
       <EditText
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:hint="To"/>
      <EditText
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:hint="Subject"/>
      <EditText
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:hint="Message"
          android:layout_weight="1"
          android:gravity="top|left"/>
     <LinearLayout
          android:layout_width="match_parent"
          android:layout_height="wrap_content">
          <Button
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:id="@+id/button"
              android:text="Reset"
              android:layout_weight="1"
              android:textAllCaps="false"
              android:textSize="20sp"/>
          <Button
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:id="@+id/button2"
             android:text="Send"
              android:layout_weight="1"
              android:textAllCaps="false"
              android:textSize="20sp"/>
      </LinearLayout>
  </LinearLayout>

技术分享

Android发送短信界面

标签:

原文地址:http://www.cnblogs.com/beens/p/5403124.html

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