diff options
author | Teddy <[email protected]> | 2013-08-26 17:33:55 +0800 |
---|---|---|
committer | Teddy <[email protected]> | 2013-08-26 17:33:55 +0800 |
commit | cf77f61bff7822b35020f2877ca4e6e683981be1 (patch) | |
tree | c7904cda1d81ef8a5dc8b196a7d8e9d360b58d40 /client/Piztor/res/layout/new_login.xml | |
parent | eb303ea6f1f6aa3e9a0cd4b00ef3fda6b06f0027 (diff) | |
parent | 92c5473740f45883c719002d4bc47236c669f51e (diff) |
Merge branch 'master' of github.com:Determinant/piztor
Diffstat (limited to 'client/Piztor/res/layout/new_login.xml')
-rw-r--r-- | client/Piztor/res/layout/new_login.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/client/Piztor/res/layout/new_login.xml b/client/Piztor/res/layout/new_login.xml new file mode 100644 index 0000000..36d3eec --- /dev/null +++ b/client/Piztor/res/layout/new_login.xml @@ -0,0 +1,54 @@ +<RelativeLayout + android:orientation="vertical" + android:id="@+id/login_layout" + android:background="@android:color/black" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + xmlns:android="http://schemas.android.com/apk/res/android"> + + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:background="@android:color/black" + android:gravity="center_horizontal" + android:orientation="vertical" > + + <ImageView + android:id="@+id/main_headbar_img" + android:layout_width="180dp" + android:layout_height="240dp" + android:layout_gravity="center_horizontal" + android:src="@drawable/title_logo" /> + </LinearLayout> + + <LinearLayout + android:orientation="vertical" + android:id="@+id/user_layout" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_marginTop="220.0dip" + android:layout_marginLeft="28.0dip" + android:layout_marginRight="28.0dip"> + <EditText android:textSize="16.0sp" android:textColor="#ff1d1d1d" android:textColorHint="#ff666666" android:id="@+id/user_id" android:background="#00ffffff" android:paddingLeft="12.0dip" android:layout_width="fill_parent" android:layout_height="44.0dip" android:hint="account" android:maxLines="1" android:maxLength="16" android:inputType="number"/> + <View android:background="#ffc0c3c4" android:layout_width="fill_parent" android:layout_height="1.0px" android:layout_marginLeft="1.0px" android:layout_marginRight="1.0px" /> + <EditText android:textSize="16.0sp" android:textColor="#ff1d1d1d" android:textColorHint="#ff666666" android:gravity="center_vertical" android:id="@+id/user_pass" android:background="#00ffffff" android:paddingLeft="12.0dip" android:layout_width="fill_parent" android:layout_height="44.0dip" android:hint="password" android:maxLines="1" android:maxLength="16" android:inputType="textPassword" /> + </LinearLayout> + + + <Button + android:textSize="18.0sp" + android:textColor="#ff333333" + android:gravity="center" + android:id="@+id/login_btn_login" + android:background="@android:color/white" + android:paddingTop="5.0dip" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_marginLeft="28.0dip" + android:layout_marginTop="12.0dip" + android:layout_marginRight="28.0dip" + android:text="login" + android:layout_below="@id/user_layout" /> + +</RelativeLayout>
\ No newline at end of file |