Android Minitwitter 記住密碼功能

來源:互聯網
上載者:User

標籤:

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 記住密碼功能

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.