耳朵(七)安静的登录界面

作者: a_mean | 来源:发表于2016-09-21 15:49 被阅读450次

tags: 耳朵_android


先附上效果图:


接着我们到布局文件中简单布下局, 这里用到了GifViewMaterialEditText, 下面是布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:att="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/login">

    <pl.droidsonroids.gif.GifImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/login"/>

    <View
        android:id="@+id/center"
        android:layout_width="1dp"
        android:layout_height="1dp"
        android:layout_centerInParent="true"/>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/center"
        android:layout_margin="40dp">

        <com.rengwuxian.materialedittext.MaterialEditText
            android:id="@+id/ed_id"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="请输入耳朵账号"
            android:singleLine="true"
            android:textSize="16sp"
            att:met_baseColor="#ffffff"
            att:met_clearButton="true"
            att:met_floatingLabel="highlight"
            att:met_floatingLabelText="账号"
            att:met_floatingLabelTextColor="@color/colorPrimary"
            att:met_iconLeft="@drawable/icon_id"
            att:met_primaryColor="@color/colorPrimary"
            att:met_textColorHint="#c0c0c0"
            att:met_underlineColor="@color/colorPrimary"/>

        <com.rengwuxian.materialedittext.MaterialEditText
            android:id="@+id/ed_pwd"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/ed_id"
            android:hint="请输入密码"
            android:password="true"
            android:singleLine="true"
            android:textSize="16sp"
            att:met_baseColor="#ffffff"
            att:met_floatingLabel="highlight"
            att:met_floatingLabelText="密码"
            att:met_floatingLabelTextColor="@color/colorPrimary"
            att:met_iconLeft="@drawable/icon_pwd"
            att:met_primaryColor="@color/colorPrimary"
            att:met_textColorHint="#c0c0c0"
            att:met_underlineColor="@color/colorPrimary"/>

        <com.gc.materialdesign.views.ButtonRectangle
            android:id="@+id/btn_login"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_below="@+id/ed_pwd"
            android:layout_marginTop="10dp"
            android:background="@color/colorPrimary"
            android:text="登录"/>

        <com.gc.materialdesign.views.ButtonFlat
            android:id="@+id/btn_forget"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_below="@+id/btn_login"
            android:layout_marginTop="10dp"
            android:background="@color/colorPrimary"
            android:text="忘记密码"/>

        <com.gc.materialdesign.views.ButtonFlat
            android:id="@+id/btn_reg"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_alignParentRight="true"
            android:layout_below="@+id/btn_login"
            android:layout_marginTop="10dp"
            android:background="@color/colorPrimary"
            android:text="注册新用户"/>
    </RelativeLayout>
</RelativeLayout>

最后出来的效果图是这样的:


到现在为止我们还没写任何代码呢, 但如果你运行起来的话, 已经可以看到非常不错的效果了,


然后回到Activity中为按钮实现功能:
首先是对id和pwd进行检验, 这里暂时只检查了是否为空:

    btn_login.onClick {
        val username = ed_id.text.trim().toString()
        val password = ed_pwd.text.toString()

        if (!TextUtils.isEmpty(username) && !TextUtils.isEmpty(password)) {
            showLoading()

            val params = HashMap<String, Any>()
            params.put("json", "user/generate_auth_cookie")
            params.put("username", username)
            params.put("password", password)

            //这里如果登录失败时需要提示用户, 所以将needCallBack设置为true
            HMRequest.go<CookieModel>(params = params, needCallBack = true) {
                cancelLoading()

                if (it == null) {
                    showTips(TipType.Error, "账号或密码错误")
                } else {
                    //登录成功, 可在本地缓存cookie, 并更新HMRequest中默认的params
                    showToast(it.cookie)
                }
            }
        } else {
            showTips(TipType.Warning, "账号密码呢?")
        }

OK, 运行看一下, 效果还OK的.


github: https://github.com/bxcx/ear
本节分支: https://github.com/bxcx/ear/tree/login

相关文章

  • 耳朵(七)安静的登录界面

    tags: 耳朵_android 先附上效果图: 上一回完成了文章详情及评论的加载, 不过评论暂时还是用的别的列表...

  • 考勤系统界面设计

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

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

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

  • 2018-07-09

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

  • 2018-07-09

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

  • 登录界面效果图

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

  • antd pro v5 登录流程

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

  • 2018-10-14

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

  • 安静的耳朵

    慵懒的清晨,被聒噪的闹铃声惊醒,隐隐约约能听到几声清脆的鸟叫声,公路上洒水车伴随着复古的叫卖音乐冲刷着繁忙的都...

  • vue 保存登录信息

    场景 在登录界面中使用账号和密码登录,需要记录用户登录信息,在下次进入登录界面时将上次登录信息反写到界面中。 浏览...

网友评论

  • 大头呆:难得有人用kotlin
    a_mean:@大头呆 还好,代码比较优雅

本文标题:耳朵(七)安静的登录界面

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