SharedPreferences自动登陆与记住密码之初级篇


   小编初学安卓,对sharedpreferences的学习有了一定的了解,有了很多体会,希望用下面的代码展示我的学习成果,也希望能给初学安卓的童鞋一些指引,当然这里也有很多不足之处,还望大家多批评指正!给予我更多的支持和鼓励。话不多说,代码抵千言


1.主页面的lanout布局文件,很简单就直接见下面的布局文件代码:


    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

            android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#00ff55"
        android:gravity="center"
        android:padding="5dp"
        android:text="登陆"
        android:textSize="20sp" />

            android:id="@+id/et_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="请输入用户名"
        android:padding="5dp"
        android:textSize="20sp" />

            android:id="@+id/et_pwd"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="请输入用户密码"
        android:padding="5dp"
        android:textSize="20sp" />

            android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

                    android:id="@+id/checkbox1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="记住密码" />

                    android:id="@+id/checkbox2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="自动登录" />
   

    
   

你可能感兴趣的:(SharedPreferences自动登陆与记住密码之初级篇)