123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/content_view"
- android:layout_width="@dimen/ss_login_width"
- android:layout_height="@dimen/ss_login_height_old"
- android:background="@drawable/ss_loginb"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="80dp"
- android:orientation="vertical" >
- <ImageView
- android:id="@+id/back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="25dp"
- android:layout_marginTop="15dp"
- android:background="@drawable/ss_back" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="40dp"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"
- android:layout_margin="5dp"
- android:layout_marginRight="25dp"
- android:layout_marginTop="10dp"
- android:padding="5sp"
- android:text="@string/ss_setpwd_text_title"
- android:textColor="@color/ss_font_black"
- android:textSize="20sp" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingLeft="@dimen/ss_login_content_padding"
- android:paddingRight="@dimen/ss_login_content_padding"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:gravity="center_vertical"
- android:layout_marginTop="10dp"
- android:background="@drawable/ss_input_bg">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="20dp"
- android:src="@drawable/ss_account"/>
- <TextView
- android:id="@+id/tvmobile"
- android:layout_width="match_parent"
- android:layout_height="35dp"
- android:layout_marginLeft="13dp"
- android:background="@null"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:textColor="#000000"
- android:textSize="16sp" >
- </TextView>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:gravity="center_vertical"
- android:layout_marginTop="10dp"
- android:background="@drawable/ss_input_bg">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="20dp"
- android:src="@drawable/ss_password"/>
- <EditText
- android:id="@+id/edit_pwd"
- android:layout_width="match_parent"
- android:layout_height="35dp"
- android:layout_marginLeft="13dp"
- android:background="@null"
- android:gravity="center_vertical"
- android:hint="@string/ss_user_edit_pwdhint"
- android:imeOptions="flagNoExtractUi|actionDone"
- android:inputType="textPassword"
- android:cursorVisible="true"
- android:textCursorDrawable="@null"
- android:maxLength="22"
- android:singleLine="true"
- android:textColor="#000000"
- android:textColorHint="#d5dad3"
- android:textSize="16sp" >
- </EditText>
- </LinearLayout>
- <Button
- android:id="@+id/iphonebtlg"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_marginTop="10dp"
- android:background="@drawable/ss_button"
- android:text="@string/ss_setuser_bt_msg"
- android:textColor="@color/ss_font_white"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/service"
- android:layout_width="wrap_content"
- android:layout_height="25dp"
- android:layout_marginTop="5dp"
- tools:text="@string/ss_user_text_my"
- android:textColor="@color/ss_font_gray"
- android:textSize="16sp" />
- </LinearLayout>
- </LinearLayout>
|