zoukankan      html  css  js  c++  java
  • LinearLayout(线性布局)

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3     xmlns:tools="http://schemas.android.com/tools"
     4     android:id="@+id/LinearLayout1"
     5     android:layout_width="match_parent"
     6     android:layout_height="match_parent"
     7     android:orientation="vertical">
     8 
     9 
    10     <TextView
    11         android:id="@+id/textView2"
    12         android:layout_width="wrap_content"
    13         android:layout_height="wrap_content"
    14         android:layout_marginLeft ="10dp"
    15         android:layout_marginTop="10dp"
    16         android:textSize="20sp"
    17         android:text="@string/user_name" />
    18 
    19     <EditText
    20         android:layout_marginLeft ="10dp"
    21         android:layout_marginTop="10dp"
    22         android:textSize="20sp"
    23         android:id="@+id/editText2"
    24         android:layout_width="wrap_content"
    25         android:layout_height="wrap_content"
    26         android:ems="10"
    27         android:inputType="textPersonName" />
    28 
    29     <TextView
    30         android:layout_marginLeft ="10dp"
    31         android:layout_marginTop="10dp"
    32         android:textSize="20sp"
    33         android:id="@+id/textView3"
    34         android:layout_width="wrap_content"
    35         android:layout_height="wrap_content"
    36         android:text="@string/user_password" />
    37 
    38     <EditText
    39         android:layout_marginLeft ="10dp"
    40         android:layout_marginTop="10dp"
    41         android:textSize="20sp"
    42         android:id="@+id/editText3"
    43         android:layout_width="wrap_content"
    44         android:layout_height="wrap_content"
    45         android:ems="10"
    46         android:inputType="textPassword" />
    47 
    48     <Button
    49         android:layout_marginLeft ="10dp"
    50         android:layout_marginTop="10dp"
    51         android:textSize="20sp"
    52         android:id="@+id/button"
    53         android:layout_width="wrap_content"
    54         android:layout_height="wrap_content"
    55         android:text="@string/button" />
    56 </LinearLayout>
  • 相关阅读:
    为什么测试人员需要了解代码逻辑、表结构
    http报文常见的请求头、响应头
    测试人如何做出一份好简历
    如何制定测试计划
    写SQL的套路
    我是如何理解对公信贷业务
    db2----实操篇
    Oracle----高级操作
    常见web中间件漏洞(二)Apache漏洞
    常见web中间件漏洞(一)IIS漏洞
  • 原文地址:https://www.cnblogs.com/cherrydream/p/10187841.html
Copyright © 2011-2022 走看看