| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/EFEFEF"
- android:orientation="vertical" >
- <include layout="@layout/fragment_title" />
- <LinearLayout
- android:id="@+id/pushtag"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginTop="20dp"
- android:background="@drawable/login_btn_selector"
- android:visibility="gone"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_marginLeft="10dp"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:text="推送标签"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_15" />
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/modifyPassword"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginTop="20dp"
- android:background="@drawable/login_btn_selector"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_marginLeft="10dp"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:text="修改密码"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_15" />
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/qiehuanyonghu"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginTop="20dp"
- android:background="@drawable/login_btn_selector"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_marginLeft="10dp"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:text="切换用户"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_15" />
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/banbenxinxi"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginTop="20dp"
- android:background="@drawable/login_btn_selector"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_marginLeft="10dp"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:text="版本信息"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_15" />
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/tuichudenglu"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginTop="20dp"
- android:background="@drawable/login_btn_selector"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_marginLeft="10dp"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:text="退出登录"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_15" />
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
- </LinearLayout>
-
- </LinearLayout>
|