| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/bg_main"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <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="160dp"
- android:layout_height="160dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="10dp"
- 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"
- android:layout_marginTop="10dp">
- <TextView
- android:id="@+id/name_text"
- style="@style/IMTbleLine_TextKey"
- android:drawableLeft="@drawable/resume_empty_icon"
- android:drawablePadding="5dp"
- android:text="@string/name_align" />
- <TextView
- android:id="@+id/name_tv"
- style="@style/IMTbleLine_TextValue"
- android:layout_toLeftOf="@+id/name_arrow_img"
- android:layout_toRightOf="@+id/name_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_rl"
- style="@style/IMTbleLine_UP">
- <TextView
- android:id="@+id/sex_text"
- style="@style/IMTbleLine_TextKey"
- android:drawableLeft="@drawable/resume_empty_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"
- android:visibility="invisible" />
- </RelativeLayout>
- <RelativeLayout
- android:id="@+id/birthday_rl"
- style="@style/IMTbleLine">
- <TextView
- android:id="@+id/birthday_text"
- style="@style/IMTbleLine_TextKey"
- android:drawableLeft="@drawable/resume_empty_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"
- android:visibility="invisible" />
- </RelativeLayout>
- <RelativeLayout
- android:id="@+id/city_rl"
- style="@style/IMTbleLine_UP">
- <TextView
- android:id="@+id/city_text"
- style="@style/IMTbleLine_TextKey"
- android:drawableLeft="@drawable/resume_empty_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"
- android:visibility="invisible" />
- </RelativeLayout>
- <RelativeLayout
- android:id="@+id/tel_rl"
- style="@style/IMTbleLine">
- <TextView
- android:id="@+id/tel_text"
- style="@style/IMTbleLine_TextKey"
- android:drawableLeft="@drawable/resume_empty_icon"
- android:drawablePadding="5dp"
- android:text="@string/telephone" />
- <TextView
- android:id="@+id/tel_tv"
- style="@style/IMTbleLine_TextValue"
- android:layout_toLeftOf="@+id/tel_arrow_img"
- android:layout_toRightOf="@+id/tel_text" />
- <ImageView
- android:id="@+id/tel_arrow_img"
- style="@style/IMTbleLine_ArrowImg"
- android:contentDescription="@string/app_name"
- android:visibility="invisible" />
- </RelativeLayout>
- <Button
- android:id="@+id/next_step_btn"
- android:layout_width="fill_parent"
- android:layout_height="50dp"
- android:layout_marginBottom="10dp"
- android:layout_marginLeft="40dp"
- android:layout_marginRight="40dp"
- android:layout_marginTop="9dp"
- android:background="@drawable/bg_btn"
- android:gravity="center"
- android:textColor="@color/white" />
- <Button
- android:id="@+id/look_location_btn"
- android:layout_width="fill_parent"
- android:layout_height="50dp"
- android:layout_marginBottom="10dp"
- android:layout_marginLeft="40dp"
- android:layout_marginRight="40dp"
- android:background="@drawable/bg_btn"
- android:gravity="center"
- android:text="@string/look_friend_location"
- android:textColor="@color/white" />
- </LinearLayout>
- </ScrollView>
- <com.xzjmyk.pm.activity.view.DataLoadView
- android:id="@+id/data_load_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </RelativeLayout>
- </LinearLayout>
|