zoukankan      html  css  js  c++  java
  • Android 网格布局短信发送界面

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3     android:layout_width="match_parent"
     4     android:layout_height="match_parent"
     5     android:rowCount="1"
     6     android:columnCount="4"
     7     android:orientation="horizontal"
     8     >
     9 
    10     <EditText
    11         android:layout_width="match_parent"
    12         android:layout_height="50dp"
    13         android:layout_columnSpan="4"
    14         android:hint="TO">
    15     </EditText>
    16     <EditText
    17         android:layout_width="match_parent"
    18         android:layout_height="50dp"
    19         android:layout_columnSpan="4"
    20         android:hint="Subject">
    21     </EditText>
    22     <EditText
    23         android:layout_width="match_parent"
    24         android:layout_height="350dp"
    25         android:layout_columnSpan="4"
    26         android:hint="Message"
    27         android:gravity="left|top">
    28     </EditText>
    29     <Button
    30         android:layout_width="200dp"
    31         android:layout_height="wrap_content"
    32         android:text="Reset"
    33         android:textColor="#00F"
    34         android:textSize="20dp"
    35         />
    36     <Button
    37         android:layout_width="200dp"
    38         android:layout_height="wrap_content"
    39         android:text="sent"
    40         android:textColor="#00F"
    41         android:textSize="20dp"
    42         />
    43 </GridLayout>

  • 相关阅读:
    Python函数学习——作用域与嵌套函数
    Python函数学习——初步认识
    python-安装,设置环境变量(win10)
    python-正则表达式
    python-时间
    python-集合
    python-模块
    Python-sys模块,异常
    python-自定义异常,with用法
    python-异常
  • 原文地址:https://www.cnblogs.com/TENOKAWA/p/5420036.html
Copyright © 2011-2022 走看看