Android Walker登录记住密码页面功能实现

本文实例为大家分享了Android Walker登录记住密码页面的具体代码,供大家参考,具体内容如下

目标效果:

这一次修改的不多,添加了点击用户登录的跳转,登录页面的记住密码,和程序运行一次后,不进入导航页面的功能。

1.MainActivity.java页面修改了setOnItemClickListener的点击事件,进行跳转。

MainActivity.java页面:

package com.example.login;

import java.util.ArrayList;
import java.util.List;

import com.example.walkersimulate.util.SlideMenu;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.Toast;

public class MainActivity extends Activity {

 private SlideMenu slideMenu;
 private ImageView ivSwitchSlideMenu;
 private Intent intent;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 requestWindowFeature(Window.FEATURE_NO_TITLE);
 setContentView(R.layout.activity_main);

 initMenuList();
 slideMenu = (SlideMenu) findViewById(R.id.slideMenu);
 ivSwitchSlideMenu = (ImageView) findViewById(R.id.switch_slidemenu);
 ivSwitchSlideMenu.setOnClickListener(new OnClickListener() {

 @Override
 public void onClick(View view) {
 if (slideMenu.isMainScreenShowing()) {// 判断滑动菜单是否已打开,如果未打开
  slideMenu.openMenu(); // 打开滑动菜单
 } else {
  slideMenu.closeMenu();// 关闭滑动菜单
 }
 }
 });
 }

 private void initMenuList() {
 /*设置数据源(图片和文本信息)*/
 int[] icons = { R.drawable.icons_menu_login,
 R.drawable.icons_menu_sport, R.drawable.icons_menu_inform,
 R.drawable.icons_menu_history, R.drawable.icons_menu_weather,
 R.drawable.icons_menu_health, R.drawable.icons_menu_setting };
 final String[] introductons = getResources().getStringArray(
 R.array.menulist);
 /*实例列表*/
 List<Item> items = new ArrayList<Item>();
 /*向列表中添加图片和对应的文本信息*/
 for (int i = 0; i < icons.length; i++) {
 items.add(new Item(icons[i], introductons[i]));
 }
 ListView lvMenuList = (ListView) findViewById(R.id.lvMenuList);
 /*创建适配器*/
 itemAdapter adapter = new itemAdapter(this, R.layout.menulist_item,
 items);
 /*配置适配器*/
 lvMenuList.setAdapter(adapter);
 /*列表某一项的点击事件*/
 lvMenuList.setOnItemClickListener(new OnItemClickListener() {

 @Override
 public void onItemClick(AdapterView<?> adapterView, View view,
  int position, long id) {
 switch (position) {
 case 0:
  intent=new Intent(MainActivity.this,LoginActivity.class);
  startActivity(intent);
  break;

 default:
  break;
 }
 }
 });
 }
}

2.WelcomeActivity.java页面修改onAnimationEnd动画结束事件。

WelcomeActivity.java页面:

package com.example.login;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.view.Menu;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.widget.RelativeLayout;

public class WelcomeActivity extends Activity {

 private Intent intent;
 private SharedPreferences pref;
 private boolean isFirst=true;//用于判断是否是第一次运行,运行后变为false
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_welcome);

 RelativeLayout layoutWelcome=(RelativeLayout) findViewById(R.id.layoutwelcome);
 AlphaAnimation alphaAnimation=new AlphaAnimation(0.1f,1.0f);
 alphaAnimation.setDuration(3000);
 layoutWelcome.startAnimation(alphaAnimation);
 alphaAnimation.setAnimationListener(new AnimationListener() {
 @Override
 public void onAnimationStart(Animation animation) {
 }
 @Override
 public void onAnimationRepeat(Animation animation) {
 }
 @Override
 public void onAnimationEnd(Animation animation) {
 judgeIntent();
 }
 private void judgeIntent() {
 pref=getSharedPreferences("isFirst",MODE_PRIVATE);//创建SharedPreferences对象
 isFirst=pref.getBoolean("isFirstIn",true);//如果第一次运行,无isFirstIn值,自动获取第二个参数为默认值
 if(isFirst){//如果为true,进入if语句
  intent=new Intent(WelcomeActivity.this,GiudeActivity.class);
  Editor editor=pref.edit();
  editor.putBoolean("isFirstIn",false);//保存isFirstIn值为false
  editor.commit();//提交数据
 }else{
  intent=new Intent(WelcomeActivity.this,MainActivity.class);//如果为false,说明程序已经运行过,直接跳转到主页面
 }
 startActivity(intent);
 finish();
 }
 });
 }

}

3.login_top.xml页面添加多选框,用于选择记住密码。

login_top.xml页面:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:background="@drawable/logintop_bg"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:paddingBottom="@dimen/activity_horizontal_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_top_margin"
 tools:context=".MainActivity" >  

 <EditText
  android:id="@+id/etName"
  android:hint="@string/etName"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_alignParentLeft="true"
  android:layout_alignParentTop="true"
  android:background="@android:drawable/edit_text"
  android:drawableLeft="@drawable/etaccount"
  android:drawablePadding="25dp"
  android:ems="10" >
  <requestFocus />
 </EditText>

 <EditText
  android:id="@+id/etPass"
  android:hint="@string/etPass"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_alignLeft="@+id/etName"
  android:layout_below="@+id/etName"
  android:layout_marginTop="10dp"
  android:background="@android:drawable/edit_text"
  android:drawableLeft="@drawable/etpass"
  android:drawablePadding="10dp"
  android:ems="10"
  android:inputType="textPassword" />
 <CheckBox
  android:id="@+id/cbSave"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginTop="110dp"
  android:text="记住密码"/>

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_alignLeft="@+id/etPass"
  android:layout_below="@+id/etPass"
  android:layout_marginTop="40dp" >

  <Button
   android:id="@+id/btLogin"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:background="@drawable/btchange_bg"
   android:text="@string/btLogin" />

  <Button
   android:id="@+id/btRegister"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:background="@drawable/btchange_bg"
   android:text="@string/btRegister"
   android:layout_marginLeft="5dp" />
 </LinearLayout>        

</RelativeLayout>

4.LoginActivity.java页面处理数据并保存。

LoginActivity.java页面:

package com.example.login;

import android.app.Activity;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast;

public class LoginActivity extends Activity implements OnClickListener{

 private EditText etName,etPass;
 private CheckBox cbSave;
 private Button btLogin,btRegister;
 private SharedPreferences pref;
 private Editor editor;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_login);

 /*获取控件id*/
 getId();
 /*获取数据*/
 getData();
 /*绑定点击事件*/
 bindClick();
 }

 /*获取控件id*/
 private void getId() {
 etName=(EditText) findViewById(R.id.etName);
 etPass=(EditText) findViewById(R.id.etPass);
 cbSave=(CheckBox) findViewById(R.id.cbSave);
 btLogin=(Button) findViewById(R.id.btLogin);
 btRegister=(Button) findViewById(R.id.btRegister);
 }

 /*获取数据*/
 private void getData() {
 pref=getSharedPreferences("savaLogin",MODE_PRIVATE);//创建SharedPreferences对象
 editor=pref.edit();//创建SharedPreferences的编辑器
 String userName=pref.getString("userName","");//获取用户名,没有则用空代替
 String userPass=pref.getString("userPass","");
 if(userName.equals("")){//如果为空,代表前一次为选择记住密码,则这次显示记住密码多选框不打勾
 cbSave.setChecked(false);
 }else{
 cbSave.setChecked(true);
 etName.setText(userName);//将获取到的值设置为text
 etPass.setText(userPass);
 }
 }

 /*点击事件保存数据*/
 @Override
 public void onClick(View view) {
 switch (view.getId()) {
 case R.id.btLogin:
 String userName=etName.getText().toString().trim();//获取EditText中输入的值,并去掉空格
 String userPass=etPass.getText().toString().trim();
 if("admin".equals(userName)&&"123456".equals(userPass)){
 if(cbSave.isChecked()){
  editor.putString("userName",userName);
  editor.putString("userPass",userPass);
  editor.commit();//提交数据
 }else{//若没有选择记住密码
  editor.remove("userPass");//删除密码
  editor.commit();
 }
 Toast.makeText(LoginActivity.this,"登录成功",Toast.LENGTH_SHORT).show();
 }else{
 Toast.makeText(LoginActivity.this,"用户名或密码错误",Toast.LENGTH_SHORT).show();
 }
 break;

 case R.id.btRegister:
 break;
 }
 }

 private void bindClick() {
 btLogin.setOnClickListener(this);
 btRegister.setOnClickListener(this);
 }
}

5.程序运行就显示目标效果了。

源码下载:Android Walker登录记住密码页面

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android实现用户登录记住密码功能

    一.打开之前完成的Case_login进行修改再编辑 二.将注册按钮删除并在登录按钮前拖出一个checkBox,编辑代码如下: 在layout_top.xml文件中进行编辑 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_

  • Android通过"记住密码"功能学习数据存储类SharedPreferences详解及实例

    SharedPreferences是Android中存储简单数据的一个工具类.可以想象它是一个小小的Cookie,它通过用键值对的方式把简单数据类型(boolean.int.float.long和String)存储在应用程序的私有目录下(data/data/包名/shared_prefs/)自己定义的xml文件中. 一.简介 它提供一种轻量级的数据存储方式,通过eidt()方法来修改里面的内容,通过Commit()方法来提交修改后的内容. 二.重要方法 public abstract boole

  • Android SharedPreferences实现记住密码和自动登录界面

    SharedPreferences介绍: SharedPreferences是Android平台上一个轻量级的存储类,主要是保存一些常用的配置参数,它是采用xml文件存放数据的,文件存放在"/data/data<package name>/shared_prefs"目录下. SharedPreferences的用法: 由于SharedPreferences是一个接口,而且在这个接口里没有提供写入数据和读取数据的能力.但它是通过其Editor接口中的一些方法来操作Shared

  • Android实现登录界面记住密码的存储

    Android存储方式有很多种,在这里所用的存储方式是SharedPreferrences, 其采用了Map数据结构来存储数据,以键值的方式存储,可以简单的读取与写入.所以比较适合我们今天做的这个项目.我们来看一下运行图: 一.布局界面 1.login_top.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.a

  • Android实现带有记住密码功能的登陆界面

    本文实例为大家分享了Android带有记住密码功能的登陆界面实现代码,供大家参考,具体内容如下 1.设计思路 主要采用SharedPreferences来保存用户数据,本Demo没有经过加密,所有一旦Android系统被ROOT的话,其他用户就可以查看用户的私有目录,密码文件就很不安全.所以真正应用在软件上面的,一定要经过加密才保存,可以选择MD5加密. SharedPreferences介绍可以参看这篇博文:http://www.jb51.net/article/84859.htm TextW

  • Android sharedPreferences实现记住密码功能

    实现记住密码功能,供大家参考,具体内容如下 编写界面交互代码: package com.example.bz0209.login; import android.content.DialogInterface; import android.content.Intent; import android.content.SharedPreferences; import android.support.v7.app.AppCompatActivity; import android.os.Bund

  • Android 使用SharedPreferrences储存密码登录界面记住密码功能

    Android存储方式有很多种,在这里所用的存储方式是SharedPreferrences, 其采用了Map数据结构来存储数据,以键值的方式存储,可以简单的读取与写入.所以比较适合我们今天做的这个项目.我们来看一下运行图: 一.布局界面 1.login_top.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.a

  • Android开发笔记SQLite优化记住密码功能

    本文实例为大家分享了Android SQLite优化记住密码功能的具体代码,供大家参考,具体内容如下 package com.example.alimjan.hello_world; /** * Created by alimjan on 7/4/2017. */ import com.example.alimjan.hello_world.bean.UserInfo; import com.example.alimjan.hello_world.dataBase.UserDBHelper; i

  • Android Walker登录记住密码页面功能实现

    本文实例为大家分享了Android Walker登录记住密码页面的具体代码,供大家参考,具体内容如下 目标效果: 这一次修改的不多,添加了点击用户登录的跳转,登录页面的记住密码,和程序运行一次后,不进入导航页面的功能. 1.MainActivity.java页面修改了setOnItemClickListener的点击事件,进行跳转. MainActivity.java页面: package com.example.login; import java.util.ArrayList; import

  • Android SharedPreferences实现记住密码和自动登录

    本文实例为大家分享了Android SharedPreferences实现记住密码和自动登录,供大家参考,具体内容如下 效果图: 第一次进入进来 勾选记住密码和自动登录成功后,第二次进来 说明:中间存在的图片或者多余的其他部分可删掉.留下最主要的填写部分和登陆按钮即可.功能还是可以实现的. XML文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="h

  • Android实现记住密码小功能

    本文实例为大家分享了Android实现记住密码小功能的具体代码,供大家参考,具体内容如下 以下有三个点 第一点是记住密码, 第二点是点击隐藏点击显示, 第三点是登录存储. XML布局 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app=&q

  • JavaWeb 中Cookie实现记住密码的功能示例

    本文主要内容: •1.什么是Cookie •2.Cookie带来的好处 •3.Cookie的主要方法 一.什么是Cookie cookie是一种WEB服务器通过浏览器在访问者的硬盘上存储信息的手段.Cookie的目的就是为用户带来方便,为网站带来增值.虽然有着许多误传,事实上Cookie并不会造成严重的安全威胁.Cookie永远不会以任何方式执行,因此也不会带来病毒或攻击你的系统.另外,由于浏览器一般只允许存放300个Cookie,每个站点最多存放20个Cookie,每个Cookie的大小限制为

  • JavaScript登录记住密码操作(超简单代码)

    废话不多说了,直接给大家贴代码了,具体代码如下所示: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>记住密码</title> </head> <bo

  • Laravel框架基于中间件实现禁止未登录用户访问页面功能示例

    本文实例讲述了Laravel框架基于中间件实现禁止未登录用户访问页面功能.分享给大家供大家参考,具体如下: 1.生成中间件 [root@localhost MRedis]# php artisan make:middleware CheckLogin Middleware created successfully. 2.实现中间件,在app\http\middleware\CheckLogin.php public function handle($request, Closure $next)

随机推荐