zoukankan      html  css  js  c++  java
  • Androidstdio 简单界面设计 登陆系统

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent"
    android:id="@+id/back3"
    tools:context=".MainActivity">
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="用户名"
    android:textSize="20dp"
    />
    <EditText
    android:layout_width="400dp"
    android:layout_height="50dp"
    android:text="请输入用户名"
    />
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="密码"
    android:textSize="20dp"
    />
    <EditText
    android:layout_width="400dp"
    android:layout_height="50dp"
    android:text="请输入密码"
    />
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="确认密码"
    android:textSize="20dp"
    />
    <EditText
    android:layout_width="400dp"
    android:layout_height="50dp"
    android:text="请重新确认密码"
    />
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="邮箱"
    android:textSize="20dp"
    />
    <EditText
    android:layout_width="400dp"
    android:layout_height="50dp"
    android:text="xxx@qq.com"
    />

    <RadioGroup
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/sex_rg"
    android:orientation="horizontal">
    <RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="男"
    android:id="@+id/male_rb"/>
    <RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="女"
    android:id="@+id/famale_rb"/>
    </RadioGroup>
    <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="登录"
    android:id="@+id/login"
    android:background="#457"/>
    <TextView
    android:layout_width="400dp"
    android:layout_height="10dp"
    />
    <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="取消登录"
    android:id="@+id/取消登录"
    android:background="#457"
    />
    </LinearLayout>

  • 相关阅读:
    ubuntu,day1基础命令,shutdown,man,touch,rm,mv,cp,stat,locale,apt,date,tzselect,cal,快捷方式,echo,查看文件
    day 7 编码
    NO.6 appium-网络设置
    NO.5 appium-滑动和点击
    NO.4 appium-定位
    NO.3 appium-退出/启动
    NO.2 appium-安装和卸载
    NO.1 appium-关于输入法
    Springboot框架搭建
    遍历Map的四种方法
  • 原文地址:https://www.cnblogs.com/ainv-123/p/13334792.html
Copyright © 2011-2022 走看看