Android中可以使用相对布局(RelativeLayout)来实现将一个TextView在另一个文本视图(TextView)下方居中显示。
首先,在布局文件中声明一个RelativeLayout,并在其内部添加两个TextView。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView 1"
android:layout_centerHorizontal="true"
android:layout_alignParentTop="true" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView 2"
android:layout_below="@id/textView1"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp" />
</RelativeLayout>
在这个例子中,textView1位于相对布局的顶部居中显示,而textView2位于textView1的下方,并在水平中间对齐,上方有一个20dp的边距。
这样设置后,textView2就会在textView1的下方居中显示。
关于Android的布局和相对布局的更多信息,您可以查看腾讯云开发者文档中的相关介绍: https://cloud.tencent.com/document/product/269/42481
领取专属 10元无门槛券
手把手带您无忧上云