標籤:
MiniTwitter記住密碼功能實現
首先,在進入本次主要內容之前說一下,本功能的實現是在twitter登陸介面的基礎上操作,但本次主要任務內容是記住密碼的功能實現,所以登陸介面不在詳細介紹。
為本次實驗的結果圖;
1、介面介紹
布局構造:布局分為三大部分
(1)背景:使用LinearLayout布局;
(2)淺藍色部分:使用RelativeLayout布局;
注意:這裡用到圓角設定corners和填充色設定solid;
(3)輸入框和按鈕:使用TextView、EditText 、Button;
aivity_main.xml代碼如下 :
1 <TextView 2 android:id="@+id/login_user_input" 3 android:layout_width="wrap_content" 4 android:layout_height="wrap_content" 5 android:layout_alignParentTop="true" 6 android:layout_marginTop="5dp" 7 android:text="@string/login_label_username" 8 style="@style/normalText"/> 9 10 <style name="normalText" parent="@android:style/TextAppearance"> 11 <item name="android:textColor">#444</item> 12 <item name="android:textSize">14sp</item> 13 </style>14 <EditText 15 android:id="@+id/username_edit" 16 android:layout_width="fill_parent" 17 android:layout_height="wrap_content" 18 android:hint="@string/login_username_hint" 19 android:layout_below="@id/login_user_input" 20 android:singleLine="true" 21 android:inputType="text"/> 22 <TextView 23 android:id="@+id/login_password_input" 24 android:layout_width="wrap_content" 25 android:layout_height="wrap_content" 26 android:layout_below="@id/username_edit" 27 android:layout_marginTop="3dp" 28 android:text="@string/login_label_password" 29 style="@style/normalText"/> 30 <EditText 31 android:id="@+id/password_edit" 32 android:layout_width="fill_parent" 33 android:layout_height="wrap_content" 34 android:layout_below="@id/login_password_input" 35 android:password="true" 36 android:singleLine="true" 37 android:inputType="textPassword" 38 />39 <Button 40 android:id="@+id/signin_button" 41 android:layout_width="wrap_content" 42 android:layout_height="wrap_content" 43 android:layout_below="@id/password_edit" 44 android:layout_alignRight="@id/password_edit" 45 android:text="@string/login_label_signin" 46 android:background="@drawable/blue_button" 47 />
activity_main.xml
2、記住密碼功能實現
提醒:本功能的實現主要用了SharedPreferences來儲存密碼
代碼如下:
Android Minitwitter 記住密碼功能