<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content"
|
android:background="@color/white"
|
android:orientation="horizontal"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/tv_now_day"
|
android:layout_width="75dp"
|
android:gravity="center"
|
android:layout_height="40dp"
|
android:text="7月4日"
|
android:textColor="@color/main_item_orange"
|
android:textSize="15sp"
|
/>
|
|
<View
|
android:layout_width="1px"
|
android:layout_marginTop="4dp"
|
android:layout_marginBottom="4dp"
|
android:layout_height="match_parent"
|
android:background="@color/select_gray_line"/>
|
|
</LinearLayout>
|