| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?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:orientation="vertical"
- android:id="@+id/parentLin"
- android:background="@color/qingcolor"
- >
- <include layout="@layout/fragment_title" />
- <RelativeLayout
- android:id="@+id/autologin"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="20dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/login_btn_selector"
- >
- <CheckBox
- android:id="@+id/cb"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:checked="false"
- android:layout_centerVertical="true"
- />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="自动登录"
- android:textSize="@dimen/textsize_22"
- android:id="@+id/tv"
- android:textColor="@color/white"/>
-
- <ImageView
- android:layout_alignParentRight="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
- </RelativeLayout>
-
-
- <RelativeLayout
- android:id="@+id/modifyPasswordRel"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/login_btn_selector"
- >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="修改密码"
- android:textSize="@dimen/textsize_22"
- android:id="@+id/tvModifyPassword"
- android:textColor="@color/white"/>
-
- <ImageView
- android:layout_alignParentRight="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
-
- </RelativeLayout>
- <RelativeLayout
- android:id="@+id/changeuser"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/login_btn_selector"
- >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="切换用户"
- android:textSize="@dimen/textsize_22"
- android:id="@+id/tv1"
- android:textColor="@color/white"/>
-
- <ImageView
- android:layout_alignParentRight="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
-
- </RelativeLayout>
-
- <RelativeLayout
- android:id="@+id/about"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/login_btn_selector"
- >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="关于"
- android:textSize="@dimen/textsize_22"
- android:textColor="@color/white"/>
-
- <ImageView
- android:layout_alignParentRight="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
-
- </RelativeLayout>
-
- <RelativeLayout
- android:id="@+id/clearLogRel"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/login_btn_selector">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="清除日志"
- android:textSize="@dimen/textsize_22"
- android:id="@+id/tv5"
- android:textColor="@color/white"
-
- />
-
- <ImageView
- android:layout_alignParentRight="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
- </RelativeLayout>
-
- <RelativeLayout
- android:id="@+id/exit"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/login_btn_selector">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="退出登录"
- android:textSize="@dimen/textsize_22"
- android:id="@+id/tv4"
- android:textColor="@color/white"
-
- />
-
- <ImageView
- android:layout_alignParentRight="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/iv_right" />
- </RelativeLayout>
-
- </LinearLayout>
|