gpt4 book ai didi

android - 如何在两个直线android之间放置文本?

转载 作者:行者123 更新时间:2023-11-29 14:24:26 27 4
gpt4 key购买 nike

我需要在直线之间放置一段文字。我尝试使用 View ,但 TextView 位于该行下方。如何解决这个问题?我的代码如下:

   <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>

这是截图,

enter image description here

最佳答案

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:layout_marginTop="10dp" >

<View
android:layout_width="wrap_content"
android:layout_height="2dp"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/orText"
android:background="#c0c0c0" />

<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" />

<View
android:layout_width="wrap_content"
android:layout_height="2dp"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/orText"
android:background="#c0c0c0" />
</RelativeLayout>

enter image description here

关于android - 如何在两个直线android之间放置文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27293827/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com