| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/blue_very_light"
- android:orientation="vertical"
- tools:context="com.onion.appsbackup.activity.MainActivity" >
- <RelativeLayout
- android:id="@+id/rl_head"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/bg"
- android:gravity="center" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"
- android:orientation="vertical" >
- <com.onion.appsbackup.view.CircleImage
- android:id="@+id/ci_icon"
- android:layout_width="80dp"
- android:layout_height="80dp"
- android:layout_marginBottom="5dp"
- android:scaleType="fitXY"
- android:src="@drawable/cat" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/tv_nickname"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="12sp" />
- <ImageView
- android:id="@+id/iv_gender"
- android:layout_width="10dp"
- android:layout_height="10dp"
- android:scaleType="fitXY"
- android:src="@drawable/male"
- android:visibility="gone" />
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"
- android:orientation="vertical" >
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="@color/cute_green" />
- <LinearLayout
- android:id="@+id/ll_transfer"
- android:clickable="true"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:background="@drawable/item_with_frame"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingLeft="10dp"
- android:paddingRight="10dp" >
- <ImageView
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:scaleType="fitXY"
- android:src="@drawable/transfer" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:text="@string/label_transfer_apps"
- android:textSize="11sp" />
- </LinearLayout>
-
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="@color/cute_green" />
- <LinearLayout
- android:id="@+id/ll_backup"
- android:clickable="true"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:background="@drawable/item_with_frame"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingLeft="10dp"
- android:paddingRight="10dp" >
- <ImageView
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:scaleType="fitXY"
- android:src="@drawable/backup" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:text="@string/label_backup_apps"
- android:textSize="11sp" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="@color/cute_green" />
- <LinearLayout
- android:id="@+id/ll_restore"
- android:clickable="true"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:background="@drawable/item_with_frame"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingLeft="10dp"
- android:paddingRight="10dp" >
- <ImageView
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:scaleType="fitXY"
- android:src="@drawable/restore" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:text="@string/label_restore_apps"
- android:textSize="11sp" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="@color/cute_green" />
- <LinearLayout
- android:id="@+id/ll_setting"
- android:clickable="true"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:background="@drawable/item_with_frame"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingLeft="10dp"
- android:paddingRight="10dp" >
- <ImageView
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:scaleType="fitXY"
- android:src="@drawable/setting" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:text="@string/label_my_setting"
- android:textSize="11sp" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="@color/cute_green" />
- </LinearLayout>
- </LinearLayout>
|