1
我需要在一條直線之間放置文本。我嘗試通過使用視圖,但textview下線。如何解決這個問題? 我的代碼如下:如何在兩條直線android之間放置文本?
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
>
<View
android:layout_width="wrap_content"
android:layout_height="2dp"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/orText"
android:background="#c0c0c0"/>
<View
android:layout_width="wrap_content"
android:layout_height="2dp"
android:background="#c0c0c0"
android:layout_toRightOf="@+id/orText"
android:layout_alignParentRight="true"/>
<TextView
android:id="@+id/orText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="OR"
android:textColor="@android:color/black" />
</RelativeLayout>
下面是截圖,
你可以使用** 9 **補丁作爲你的TextView的背景。 – 2014-12-04 12:15:43
@DerGolem +1,這實際上不僅是最簡單但更有效的解決方案。 – 2014-12-04 12:17:47