要在Android的相对布局中设置一个TextView在另一个TextView下方并居中,可以使用以下代码示例:
在上面的示例中,我们使用了一个RelativeLayout作为根布局。在这个相对布局中,我们定义了两个TextView。第一个TextView(id为textView1)使用了android:layout_centerHorizontal="true"
属性来使其水平居中,并使用android:layout_marginTop="100dp"
属性来设置与顶部的距离。第二个TextView(id为textView2)使用了android:layout_below="@id/textView1"
属性来将其放置在textView1下方,并使用android:layout_marginTop="20dp"
属性来设置与textView1的距离。
这样,第二个TextView就会在第一个TextView下方并居中显示。