<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/text_FF1C1C1E"
|
android:orientation="vertical">
|
|
|
<LinearLayout
|
android:id="@+id/hdl_china_ll"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dp_50"
|
android:gravity="center"
|
android:orientation="horizontal">
|
|
<TextView
|
android:id="@+id/hdl_china_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="HDL China"
|
android:textColor="@color/text_FFACACAC"
|
android:textSize="@dimen/text_14" />
|
</LinearLayout>
|
|
<View
|
android:id="@+id/line_v"
|
android:layout_width="match_parent"
|
android:layout_height="0.5dp"
|
android:background="@color/text_1AFFFFFF"
|
|
/>
|
|
|
<LinearLayout
|
android:id="@+id/hdl_bahrain_ll"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dp_50"
|
android:gravity="center"
|
android:orientation="horizontal">
|
|
<TextView
|
android:id="@+id/hdl_bahrain_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="HDL Bahrain"
|
android:textColor="@color/text_FFACACAC"
|
android:textSize="@dimen/text_14"
|
|
/>
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="10dp"
|
android:background="@color/text_FF000000"
|
|
/>
|
|
<LinearLayout
|
android:id="@+id/hdl_cancel_ll"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dp_50"
|
android:gravity="center"
|
android:orientation="horizontal">
|
|
<TextView
|
android:id="@+id/hdl_cancel_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="@string/loading_cancel"
|
android:textColor="@color/text_FF5B5B5B"
|
android:textSize="@dimen/text_14"
|
|
/>
|
</LinearLayout>
|
</LinearLayout>
|