12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:paddingBottom="10dp"
- android:background="@drawable/x7_popup_back">
- <TextView
- android:id="@+id/tv_choose_account_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignTop="@+id/iv_close_choose_account"
- android:layout_alignBottom="@+id/iv_close_choose_account"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:gravity="center_vertical"
- android:text="@string/x7_choose_account"
- android:textColor="@color/x7_text_gray" />
- <ImageView
- android:id="@+id/iv_close_choose_account"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_marginTop="10dp"
- android:layout_marginRight="10dp"
- android:contentDescription="TODO"
- android:padding="10dp"
- android:src="@drawable/x7_arrow_up_green" />
- <ListView
- android:id="@+id/lv_choose_account"
- android:layout_width="wrap_content"
- android:layout_height="125dp"
- android:layout_below="@id/iv_close_choose_account"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="12dp"
- android:layout_marginRight="10dp"
- android:divider="@null"
- android:dividerHeight="10dp"
- android:listSelector="@null"
- android:scrollbarStyle="insideOverlay"
- android:scrollbarThumbVertical="@drawable/x7_scroll_bar_shape"
- android:scrollbars="vertical" />
- </RelativeLayout>
|