<?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:layout_marginTop="1dp"
|
android:orientation="vertical"
|
android:background="@color/white">
|
|
<TextView
|
android:id="@+id/tv_title_time"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerVertical="true"
|
android:layout_marginStart="12dp"
|
android:layout_marginTop="@dimen/dp_10"
|
android:gravity="center"
|
android:text="发车时间约"
|
android:textColor="#ff27282d"
|
android:textSize="12sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/tv_content"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerVertical="true"
|
android:layout_marginBottom="17dp"
|
android:layout_marginStart="12dp"
|
android:layout_marginTop="@dimen/dp_10"
|
android:gravity="center"
|
android:text="发车时间约"
|
android:textColor="#ff27282d"
|
android:textSize="12sp"
|
android:textStyle="bold" />
|
|
</LinearLayout>
|