<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:orientation="vertical"
|
android:gravity="center"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<LinearLayout
|
android:id="@+id/pop_single_ll"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:background="@android:color/white"
|
android:orientation="vertical">
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:padding="20dp"
|
android:gravity="center"
|
android:text="@string/country"
|
android:textColor="@android:color/white"
|
android:textSize="@dimen/text_size_big"
|
android:background="@color/colorPrimary"/>
|
<LinearLayout
|
android:layout_width="300dp"
|
android:layout_height="wrap_content"
|
android:paddingLeft="@dimen/view_size_10"
|
android:paddingRight="@dimen/view_size_10"
|
android:orientation="horizontal">
|
<com.wx.wheelview.widget.WheelView
|
android:id="@+id/pop_country_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"></com.wx.wheelview.widget.WheelView>
|
|
<com.wx.wheelview.widget.WheelView
|
android:id="@+id/pop_country_name"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="@dimen/view_size_10"
|
android:layout_weight="1"></com.wx.wheelview.widget.WheelView>
|
|
</LinearLayout>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.5dp"
|
android:background="@color/colorText_5"/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:orientation="horizontal">
|
<TextView
|
android:id="@+id/pop_country_confirm"
|
android:layout_weight="1"
|
android:layout_width="wrap_content"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:text="@string/confirm"
|
android:textSize="@dimen/text_size_big"/>
|
<View
|
android:layout_width="0.5dp"
|
android:layout_height="match_parent"
|
android:background="@color/colorText_5"/>
|
<TextView
|
android:id="@+id/pop_country_cancel"
|
android:layout_weight="1"
|
android:layout_width="wrap_content"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:text="@string/cancel"
|
android:textSize="@dimen/text_size_big"/>
|
</LinearLayout>
|
</LinearLayout>
|
</LinearLayout>
|