`

Android精美登录界面设计

阅读更多

在网上在到一个登录界面感觉挺不错的,给大家分享一下~先看效果图:


这个Demo除了按钮、小猫和Logo是图片素材之外,其余的UI都是通过代码实现的。

 

一、背景

背景蓝色渐变,是通过一个xml文件来设置的。代码如下:

background_login.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
	<gradient 
		android:startColor="#FFACDAE5"
		android:endColor="#FF72CAE1"
		android:angle="45"
	/>
</shape>


startColor是渐变开始的颜色值,endColor是渐变结束的颜色值,angle是渐变的角度。其中#FFACDAE5中,FF是Alpha值,AC是RGB的R值,DA是RGB的G值,E5是RGB的B值,每个值在00~FF取值,即透明度、红、绿、蓝有0~255的分值,像要设置具体的颜色,可以在PS上的取色器上查看设置。

 

 

二、圆角白框

效果图上面的并不是白框,其实框是白色的,只是设置了透明值,也是靠一个xml文件实现的。

background_login_div.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
	<solid android:color="#55FFFFFF" />
	<!-- 设置圆角
	注意:	bottomRightRadius是左下角而不是右下角  bottomLeftRadius右下角-->
	<corners android:topLeftRadius="10dp" android:topRightRadius="10dp"
		android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp"/>
</shape>

 

三、界面的布局

界面的布局挺简单的,就直接贴代码啦~

login.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/background_login">
    <!-- padding 内边距   layout_margin 外边距
  		android:layout_alignParentTop 布局的位置是否处于顶部 -->
  		
  	<RelativeLayout 
  	    android:id="@+id/login_div"
  	    android:layout_width="fill_parent"
  		android:layout_height="wrap_content"
  		android:padding="15dip"        
	  	android:layout_margin="15dip" 
	  	android:background="@drawable/background_login_div_bg" >
  		<!-- 账号 -->
	  	<TextView 
	  		android:id="@+id/login_user_input"
	  		android:layout_width="wrap_content"
	  		android:layout_height="wrap_content"
	  		android:layout_alignParentTop="true"
	  		android:layout_marginTop="5dp"
	  		android:text="@string/login_label_username"
	  		style="@style/normalText"/>
	  	<EditText 
	  		android:id="@+id/username_edit"
	  		android:layout_width="fill_parent"
	  		android:layout_height="wrap_content"
	  		android:hint="@string/login_username_hint"
	  		android:layout_below="@id/login_user_input"
	  		android:singleLine="true"
	  		android:inputType="text"/>
	    <!-- 密码 text -->
	    <TextView 
	    	android:id="@+id/login_password_input"
	    	android:layout_width="wrap_content"
	    	android:layout_height="wrap_content"
	    	android:layout_below="@id/username_edit"
	    	android:layout_marginTop="3dp"
	    	android:text="@string/login_label_password"
	    	style="@style/normalText"/>
	    <EditText 
	    	android:id="@+id/password_edit"
	    	android:layout_width="fill_parent"
	    	android:layout_height="wrap_content"
	    	android:layout_below="@id/login_password_input"
	    	android:password="true"
	    	android:singleLine="true"
	    	android:inputType="textPassword" />
	    <!-- 登录button -->
	    <Button 
	    	android:id="@+id/signin_button"
	    	android:layout_width="wrap_content"
	    	android:layout_height="wrap_content"
	    	android:layout_below="@id/password_edit"
	    	android:layout_alignRight="@id/password_edit"
	    	android:text="@string/login_label_signin"
	    	android:background="@drawable/blue_button" />
  	</RelativeLayout>
  
  	<RelativeLayout 
      	android:layout_width="fill_parent"
      	android:layout_height="wrap_content" >
		 <TextView  android:id="@+id/register_link"
		     android:text="@string/login_register_link"
		     android:layout_width="wrap_content"
		     android:layout_height="wrap_content"
		     android:layout_marginLeft="15dp"
		     android:textColor="#888"
		     android:textColorLink="#FF0066CC" />
		<ImageView android:id="@+id/miniTwitter_logo"
		    android:src="@drawable/cat"
		    android:layout_width="wrap_content"
		    android:layout_height="wrap_content"
		    android:layout_alignParentRight="true"
		    android:layout_alignParentBottom="true"
		    android:layout_marginRight="25dp"
		    android:layout_marginLeft="10dp"
		    android:layout_marginBottom="25dp" />
		<ImageView android:src="@drawable/logo"
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:layout_toLeftOf="@id/miniTwitter_logo"
			android:layout_alignBottom="@id/miniTwitter_logo"
			android:paddingBottom="8dp"/>
  	</RelativeLayout>
</LinearLayout>

 

四、Java源文件

Java源文件比较简单,只是实例化Activity,去掉标题栏。

package com.mytwitter.acitivity;

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;

public class LoginActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.login);
    }
}


在开发APP的时候,需要设计登录界面的可以以此作为参考哦!

分享到:
评论

相关推荐

    Android漂亮好看的登陆,注册界面!程序源码

    首先,我们要理解Android界面设计的基本原则。在Android中,界面通常由各种组件(Widgets)组成,如EditText用于输入文本,Button用于触发动作,ImageView用于显示图片等。这些组件可以通过XML布局文件进行定义和...

    Android 漂亮的登录界面源码

    这个源码示例对于初学者来说是一个很好的起点,它展示了如何将设计、业务逻辑和Android框架结合在一起,创建出一个完整的登录界面。通过学习和理解这个源码,开发者可以提高自己的Android开发技能,进一步提升应用的...

    非常几款漂亮的登陆界面

    在"非常几款漂亮的登录界面"这个主题中,我们将探讨设计精美的登录页面如何提升用户体验,以及设计时应考虑的关键元素。 一、设计原则 1. 清晰性:登录界面应当简洁明了,让用户一眼就能找到输入用户名和密码的...

    某宝卖280元的精美视频网站源码 支持FFMPEG 送APP源代码

    此源码是一款视频网站系统,你可以用这个来快速搭建自己的视频网站,安装简单、界面简洁、易于使用。用户可在网站上面注册登陆上传视频、发布评论与收藏视频,系统带护眼模式,有利于保护眼睛,与此同时提供了后台...

    基于uni-app框架的登录模板

    【基于uni-app框架的登录模板】是一个用于快速构建移动应用登录界面的开发资源,它利用了uni-app这一跨平台的前端框架。uni-app是由ECharts团队开发的,它允许开发者用一套代码编写应用,然后发布到iOS、Android、H5...

    精美视频网站源码支持FFMPEG

    此源码是一款视频网站系统,你可以用这个来快速搭建自己的视频网站,安装简单、界面简洁、易于使用。用户可在网站上面注册登陆上传视频、发布评论与收藏视频,系统带护眼模式,有利于保护眼睛,与此同时提供了后台...

    精美视频网站源码 视频源码 视频网站PHP源码 支持FFMPEG 送APP源代码

    此源码是一款视频网站系统,你可以用这个来快速搭建自己的视频网站,安装简单、界面简洁、易于使用。用户可在网站上面注册登陆上传视频、发布评论与收藏视频,系统带护眼模式,有利于保护眼睛,与此同时提供了后台...

    视频转换工具 Freemake Video Converter 4.1.11.69 中文多语免费版.zip

    Freemake Video Converter 是一款非常值得推荐的免费视频转换软件,支持CUDA,转换速度快性能好,界面简单,而且很精美,非常容易上手。除了最常见的格式转换功能之外,它还能裁剪、旋转视频(手机拍视频经常反转的...

    勇斗秦始皇 植物大战僵尸HD中国版上架.docx

    游戏最初在PC平台上推出,随后陆续登陆了iOS、Android等多个平台,并始终保持极高的热度。 #### HD版本概述 随着移动设备性能的不断提升,《植物大战僵尸》也推出了高清版本——《植物大战僵尸HD》(简称PvZ HD)...

    MillionHero:速度快,准确易用-支持各平台的答题助手-图形界面-多权重答案推荐-自动百度高亮答案

    MillionHerosHelper-超级答题助手通吃各答题平台可能是最人性化的答题辅助软件一秒自动搜索,三秒极速推荐答案(代替参考)交流群419958463鉴于人数太多,开启额定入群关于API错误内置百度OCR API每天只能...精美的G

Global site tag (gtag.js) - Google Analytics