xml">
美文网首页
简易登录界面

简易登录界面

作者: 26小瑜儿 | 来源:发表于2020-01-23 11:24 被阅读0次
image.png

(图片自己设小点)
<?xml version="1.0" encoding="utf-8"?>
xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="20dp"
        android:hint="QQ号/微信号/Email"
        android:drawableLeft="@mipmap/zhanghao"

        />
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="20dp"
        android:hint="密码"
        android:drawableLeft="@mipmap/mima"

        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="登录"
        android:textColor="#FFFFFFFF"
        android:background="#FF009688"
        />
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="登录遇到问题?"
        android:gravity="center_horizontal"
        android:paddingTop="20dp"
        />
</LinearLayout>

相关文章

  • 简易登录界面

    先上效果图。 接下来你将学习:将光标定位于任何位置,以及输入密码时用星号代替。 首先我们需要对控制台的窗口有所了解...

  • 简易登录界面

    (图片自己设小点)xml

  • wxPython:当密码账号输入正确,登录界面消失并显示主界面

    登录界面弹窗(LoginDialog 类)如下: 登录界面弹窗(LoginDialog 类)代码如下: 登录界面弹...

  • 考勤系统界面设计

    1. 登录界面 我们是参考智慧商超系统的登录界面和登录功能,完成考勤系统的登录界面和登录功能。以下是界面和程序:...

  • 2018-07-09

    登录及注册 登录界面 登录界面代码 管理员界面 管理员界面代码 设置父子窗口 注册界面 注册界面代码 调用参数 查...

  • 2018-07-09

    考勤系统的登录与录入 登录界面 1)登录界面代码 录入界面 1)录入界面代码 注册界面 1)注册信息代码 1)数据...

  • antd pro v5 登录流程

    涉及的主要文件 未登录时,路由跳转到登录界面 非登陆界面 登录界面

  • 登录界面效果图

    1.1用户登录界面 1.2收银员登录界面 1.3库管员登录界面 2.登录界面实现的功能描述 可实现不同用户类型的自...

  • 简易登录界面2------TableLayout的应用

    全xml实现:运行环境:Android Stdio

  • 2018-10-14

    一.开始界面 二.登录界面的实现的功能效果1.能够成功连接数据库,能登录界面,实现登录验证功能;2.该登录界面可以...

网友评论

      本文标题:简易登录界面

      本文链接:https://www.haomeiwen.com/subject/vhhnzctx.html