123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?xml version="1.0" encoding="utf-8"?>
- <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="wrap_content"
- android:background="@color/x7_white"
- android:orientation="vertical"
- android:paddingRight="6dp"
- tools:ignore="MissingDefaultResource">
- <View
- android:id="@+id/title_white_view"
- android:layout_width="match_parent"
- android:layout_height="11dp"/>
- <TextView
- android:id="@+id/tv_country_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="11dp"
- android:paddingBottom="5dp"
- android:paddingLeft="13dp"
- android:textColor="@color/x7_text_green"
- android:background="@drawable/x7_country_code_back_up"
- />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:background="@color/x7_gray_f5f5f5"
- >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="10dp"
- android:paddingLeft="13dp"
- android:orientation="horizontal"
- >
- <TextView
- android:id="@+id/tv_country_city"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:textColor="@color/x7_text_black3" />
- <TextView
- android:id="@+id/tv_country_code"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="13dp"
- android:paddingBottom="10dp"
- android:textColor="@color/x7_text_gray" />
- </LinearLayout>
- <View
- android:id="@+id/view_line_country_code"
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_marginRight="13dp"
- android:layout_marginLeft="13dp"
- android:background="#eaeaea" />
- </LinearLayout>
- <View
- android:id="@+id/view_down"
- android:layout_width="match_parent"
- android:layout_height="10dp"
- android:background="@drawable/x7_country_code_back_down"
- android:visibility="gone"
- />
- </LinearLayout>
|