<?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="wrap_content"
|
android:gravity="center"
|
|
android:background="@drawable/bg_select_dlg"
|
android:orientation="vertical" >
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="@dimen/network_train_textsize20px"
|
android:textColor="@android:color/white"
|
android:layout_margin="@dimen/ui_margin_10dp"
|
android:text="线路名称:"/>
|
<com.google.android.material.textfield.TextInputLayout
|
android:id="@+id/til_password"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="@dimen/ui_margin_10dp">
|
|
<com.google.android.material.textfield.TextInputEditText
|
android:id="@+id/tiet_road_num"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:hint="请输入线路名称"
|
android:textColorHint="@android:color/white"
|
android:textColor="@android:color/white"
|
android:inputType="text"/>
|
|
</com.google.android.material.textfield.TextInputLayout>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal"
|
>
|
<Button
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:layout_marginTop="@dimen/ui_margin_10dp"
|
android:text="确定"
|
android:padding="@dimen/ui_margin_20dp"
|
android:textSize="@dimen/network_train_textsize22px"
|
android:background="@drawable/bg_rgb_dlg"
|
android:textColor="@android:color/white"
|
android:id="@+id/btn_sure_"/>
|
<Button
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:padding="@dimen/ui_margin_20dp"
|
android:layout_marginTop="@dimen/ui_margin_10dp"
|
android:text="取消"
|
android:textSize="@dimen/network_train_textsize22px"
|
android:visibility="gone"
|
android:background="@drawable/bg_rgb_dlg"
|
android:textColor="@android:color/white"
|
android:id="@+id/btn_cancle_"/>
|
</LinearLayout>
|
|
</LinearLayout>
|