没有合适的资源?快使用搜索试试~ 我知道了~
首页Android实现简洁的APP登录界面
资源详情
资源评论
资源推荐

Android实现简洁的实现简洁的APP登录界面登录界面
主要为大家详细介绍了Android简洁登录界面的编写代码,实现简单的登录,用户名密码验证功能,具有一定的
参考价值,感兴趣的小伙伴们可以参考一下
今天需求要做一个所有app都有的登录界面,正好巩固一下我们之前学的基础布局知识。
先来看下效果图
1.布局的xml文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#2197db"
>
<ImageView
android:id="@+id/loginbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="40dp"
android:src="@drawable/login_pic"/>
<LinearLayout
android:id="@+id/input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/loginbutton"
android:layout_marginLeft="28dp"
android:layout_marginRight="28dp"
android:background="#fff"
android:orientation="vertical">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="44dp"
















安全验证
文档复制为VIP权益,开通VIP直接复制

评论0