複習布局與XML,寫了一個空的登入介面。XML的注釋我寫在當行的後面了。程式運行圖:
主函數沒有改動,不貼了。背景圖片名為:background.jpg 。看看main.xml吧。
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/background" //設定背景 > <LinearLayout android:id="@+id/empty" //佔位用的layout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight ="1"></LinearLayout> //設定佔總權重的比例 <RelativeLayout android:id="@+id/relativeLayout" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="2" android:padding="10px"> //設定內間距 /*顏色和不透明度 (alpha) 值以十六進位標記法表示。任何一種顏色的值範圍都是 0 到 255(00 到 ff)。對於 alpha,00 表示完全透明,ff 表示完全不透明。運算式順序是“aabbggrr”,其中“aa=alpha”(00 到 ff);“bb=blue”(00 到 ff);“gg=green”(00 到 ff);“rr=red”(00 到 ff)。例如,如果您希望對某疊加層應用不透明度為 50% 的藍色,則應指定以下值:7fff0000 */ <TextView android:id="@+id/user" android:text="使用者名稱: " android:layout_width="fill_parent" android:layout_height="wrap_content" android:textColor="#ffffffff" /> <EditText android:id="@+id/username" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@id/user" //在id為user的控制項之下 android:background="#88ffffff"/> //設定不透明 <TextView android:id="@+id/key" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="密碼:" android:layout_below="@id/username" android:textColor="#ffffffff" /> <EditText android:id="@+id/keyword" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@id/key" android:background="#88ffffff" android:password="true"/> <CheckBox android:id="@+id/remember" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="記住密碼" android:layout_below="@id/keyword" android:layout_alignLeft="@id/keyword" android:layout_marginLeft="15px"/> //外間距 <CheckBox android:id="@+id/autoin" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="自動登入" android:layout_below="@id/keyword" android:layout_alignRight="@id/keyword" //與id為keyword的控制項靠右對齊 android:layout_marginRight="15px"/> <Button android:id="@+id/enter" android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="center_horizontal" //內部文字位置 android:text="登 錄" android:layout_below="@id/autoin" android:layout_margin="10px"/> </RelativeLayout> </LinearLayout>
本篇部落格出自 阿修羅道,轉載請註明出處:http://blog.csdn.net/fansongy/article/details/6817968