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

  • 相关阅读:
    CSP-S2019 括号树
    [CQOI2007]余数求和
    CF1000E We Need More Bosses
    [HAOI2009]毛毛虫
    ls命令
    HTML的标签 属性 等等
    虚拟机安装Tools
    1.1 什么是安全渗透
    004-Kali Linux安装-熟悉环境
    003-Kali Linux 安装-持久加密USB安装、熟悉环境、熟悉BASH命令
  • 原文地址:https://www.cnblogs.com/TENOKAWA/p/5420036.html
Copyright © 2020-2023  润新知