| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/normal_bg"
- android:orientation="vertical" >
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
- <ImageView
- android:id="@+id/avatar_img"
- android:layout_width="90.0dip"
- android:layout_height="90.0dip"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="20dp"
- android:background="@drawable/account_avatar_bg"
- android:contentDescription="@string/app_name"
- android:paddingBottom="5.0dip"
- android:paddingLeft="4.0dip"
- android:paddingRight="6.0dip"
- android:paddingTop="5.0dip"
- android:src="@drawable/avatar_normal" />
- <RelativeLayout
- style="@style/IMTbleLine_UP"
- android:layout_marginTop="20dp" >
- <TextView
- android:id="@+id/name_text"
- style="@style/IMTbleLine_TextKey"
- android:drawableLeft="@drawable/resume_star_icon"
- android:drawablePadding="5dp"
- android:text="@string/name_align" />
- <com.xzjmyk.pm.activity.view.ClearEditText
- android:id="@+id/name_edit"
- style="@style/IMTbleLine_TextValue"
- android:layout_toLeftOf="@+id/name_arrow_img"
- android:layout_toRightOf="@+id/name_text"
- android:background="@null"
- android:hint="@string/please_input_name"
- android:inputType="text" />
- <ImageView
- android:id="@+id/name_arrow_img"
- style="@style/IMTbleLine_ArrowImg"
- android:contentDescription="@string/app_name"
- android:visibility="invisible" />
- </RelativeLayout>
- <RelativeLayout
- android:id="@+id/sex_select_rl"
- style="@style/IMTbleLine_UP" >
- <TextView
- android:id="@+id/sex_text"
- style="@style/IMTbleLine_TextKey"
- android:drawableLeft="@drawable/resume_star_icon"
- android:drawablePadding="5dp"
- android:text="@string/sex_align" />
- <TextView
- android:id="@+id/sex_tv"
- style="@style/IMTbleLine_TextValue"
- android:layout_toLeftOf="@+id/sex_arrow_img"
- android:layout_toRightOf="@+id/sex_text" />
- <ImageView
- android:id="@+id/sex_arrow_img"
- style="@style/IMTbleLine_ArrowImg"
- android:contentDescription="@string/app_name" />
- </RelativeLayout>
- <RelativeLayout
- android:id="@+id/birthday_select_rl"
- style="@style/IMTbleLine_UP" >
- <TextView
- android:id="@+id/birthday_text"
- style="@style/IMTbleLine_TextKey"
- android:drawableLeft="@drawable/resume_star_icon"
- android:drawablePadding="5dp"
- android:text="@string/birthday" />
- <TextView
- android:id="@+id/birthday_tv"
- style="@style/IMTbleLine_TextValue"
- android:layout_toLeftOf="@+id/birthday_arrow_img"
- android:layout_toRightOf="@+id/birthday_text" />
- <ImageView
- android:id="@+id/birthday_arrow_img"
- style="@style/IMTbleLine_ArrowImg"
- android:contentDescription="@string/app_name" />
- </RelativeLayout>
- <RelativeLayout
- android:id="@+id/city_select_rl"
- style="@style/IMTbleLine_UP" >
- <TextView
- android:id="@+id/city_text"
- style="@style/IMTbleLine_TextKey"
- android:drawableLeft="@drawable/resume_star_icon"
- android:drawablePadding="5dp"
- android:text="@string/residence_align" />
- <TextView
- android:id="@+id/city_tv"
- style="@style/IMTbleLine_TextValue"
- android:layout_toLeftOf="@+id/city_arrow_img"
- android:layout_toRightOf="@+id/city_text" />
- <ImageView
- android:id="@+id/city_arrow_img"
- style="@style/IMTbleLine_ArrowImg"
- android:contentDescription="@string/app_name" />
- </RelativeLayout>
- <Button
- android:id="@+id/next_step_btn"
- style="@style/IMButton.Orange"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="9dp"
- android:layout_marginLeft="9dp"
- android:layout_marginRight="9dp"
- android:layout_marginTop="9dp"
- android:gravity="center"
- android:text="@string/sure" />
- </LinearLayout>
- </ScrollView>
- </LinearLayout>
|