本讲完成的效果为:
登录界面的布局代码(login.xml)为:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="https://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/main_bg"
android:orientation="vertical" >
<Button
android:id="@+id/btn_add_accountn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginRight="10dip"
android:layout_marginTop="10dip"
android:background="@drawable/add_account_d" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/head_bg"
android:gravity="center"
android:layout_marginTop="20dip"
android:orientation="vertical" >
<ImageView
android:id="@+id/imge_user_head"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/user_head" />
</LinearLayout>
<Spinner
android:id="@+id/spn_user_list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/account_selete_bg"
android:layout_gravity="center"
android:layout_marginTop="10dip" />
<Button
android:id="@+id/btn_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="10dip"
android:background="@drawable/login_d"
android:text="@string/login"
android:textColor="@color/white"
android:textSize="20dip" />
</LinearLayout><?xml