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>

  • 相关阅读:
    全选+批量删除
    ssm异步上传图片
    抽象类与接口区别
    请求转发和重定向区别
    switch
    一道有点绕弯,考察的知识也是最基础的题
    线程安全之集合
    会话跟踪技术
    关于异常说明
    mybatis总结(三)之多表查询
  • 原文地址:https://www.cnblogs.com/TENOKAWA/p/5420036.html
Copyright © 2011-2022 走看看