zoukankan      html  css  js  c++  java
  • Android发送短信界面

    <?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>

  • 相关阅读:
    创建型模式
    建造者模式
    抽象工厂模式
    工厂方法模式
    原型模式
    [水]三个日常签到题
    [数]青蛙的约会&Strange function
    [水]三个数学的小技巧题
    Jquery Ajax的使用
    easyui学习记录:combotree的使用
  • 原文地址:https://www.cnblogs.com/beens/p/5403124.html
Copyright © 2011-2022 走看看