<?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="250dp"
    android:background="@color/white"
    android:orientation="vertical"
    android:padding="10dp">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="center_vertical"
        android:orientation="horizontal">


        <View
            android:layout_width="0dp"
            android:layout_height="1px"
            android:layout_marginLeft="50dp"
            android:layout_weight="1"
            android:background="@color/text_gray" />

        <TextView
            android:id="@+id/visibleScopeTextView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="10dp"
            android:paddingRight="10dp"
            android:text="只展示3天朋友圈" />

        <View
            android:layout_width="0dp"
            android:layout_height="1px"
            android:layout_marginRight="50dp"
            android:layout_weight="1"
            android:background="@color/text_gray" />

    </LinearLayout>
</LinearLayout>