<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/lc_demo_color_ffffff"
|
android:orientation="vertical"
|
android:paddingLeft="@dimen/px_30"
|
android:paddingRight="@dimen/px_30">
|
|
<LinearLayout
|
android:layout_width="@dimen/px_340"
|
android:layout_height="@dimen/px_80"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="@dimen/px_300"
|
android:background="@drawable/lc_demo_border_100r_shape"
|
android:gravity="center">
|
|
<TextView
|
android:id="@+id/tv_title_cn"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:background="@drawable/lc_demo_bg_selector"
|
android:gravity="center"
|
android:text="@string/lc_demo_cn"
|
android:textColor="@drawable/lc_demo_txt_color_selector"
|
android:textSize="@dimen/px_28"></TextView>
|
|
<TextView
|
android:id="@+id/tv_overseas"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:background="@drawable/lc_demo_bg_selector"
|
android:gravity="center"
|
android:text="@string/lc_demo_overseas"
|
android:textColor="@drawable/lc_demo_txt_color_selector"
|
android:textSize="@dimen/px_28"></TextView>
|
</LinearLayout>
|
|
|
</LinearLayout>
|