Android中2小时之间的文字

时间:2016-09-15 14:47:10

标签: android xml


如何在Android中的两条水平线之间编写文本,如Instagram(见图)?

enter image description here

1 个答案:

答案 0 :(得分:2)

试试这种方式

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

        <View
            android:layout_width="0dp"
            android:layout_height="1dp"
android:background="#000000"
            android:layout_weight="1"/>

        <TextView
            android:id="@+id/order"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="ODER"
            android:textColor="#ffffff"
            android:textSize="14sp" />

        <View
            android:layout_width="0dp"
            android:layout_height="1dp"
android:background="#000000"
            android:layout_weight="1"/>

    </LinearLayout>