123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout 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">
- <RelativeLayout
- android:id="@+id/rl_account_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <TextView
- android:id="@+id/tv_small_account_note"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="18dp"
- android:layout_marginRight="7dp"
- android:layout_toLeftOf="@+id/tv_add_account"
- android:background="@drawable/x7_tv_account_note_bg"
- android:clickable="true"
- android:gravity="center"
- android:text="@string/x7_small_account_note"
- android:textColor="#12cdb0"
- android:textSize="9dp" />
- <TextView
- android:id="@+id/tv_add_account"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_marginTop="18dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/x7_tv_account_note_bg"
- android:clickable="true"
- android:gravity="center"
- android:text="@string/x7_add_smallAccount"
- android:textColor="#12cdb0"
- android:textSize="9dp" />
- </RelativeLayout>
- <TextView
- android:id="@+id/tv_choose_account_word"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/rl_account_title"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="18dp"
- android:text="@string/x7_choose_account"
- android:textColor="#12cdb0"
- android:textSize="17dp" />
- <ListView
- android:id="@+id/small_account_list"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/tv_choose_account_word"
- android:layout_marginTop="10dp"
- android:divider="#ffffff"
- android:dividerHeight="5dp"
- android:listSelector="#00000000"/>
- <RelativeLayout
- android:id="@+id/small_dialog"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:visibility="visible"
- android:layout_marginTop="65dp"
- android:layout_marginLeft="10dp"
- android:layout_below="@+id/tv_choose_account_word">
- <ImageView
- android:id="@+id/small_dialog_top"
- android:layout_width="32dp"
- android:layout_height="20dp"
- android:layout_marginLeft="20dp"
- android:src="@drawable/k3" />
- <ScrollView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- <TextView
- android:id="@+id/small_dialog_text"
- android:layout_width="213dp"
- android:layout_height="wrap_content"
- android:background="@drawable/k2"
- android:text=""
- android:paddingTop="30dp"
- android:paddingLeft="15dp"
- android:paddingRight="21dp"
- android:layout_below="@+id/small_dialog_top"/>
- <ImageView
- android:id="@+id/small_dialog_cancel"
- android:layout_width="10dp"
- android:layout_height="10dp"
- android:clickable="true"
- android:src="@drawable/small_dialog_cancel"
- android:layout_alignRight="@+id/small_dialog_text"
- android:layout_alignTop="@+id/small_dialog_text"
- android:layout_marginTop="7dp"
- android:layout_marginRight="11dp"
- />
- </RelativeLayout>
- </RelativeLayout>
|