首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

Android:相对布局设置TextView在另一个文本视图下方居中

Android中可以使用相对布局(RelativeLayout)来实现将一个TextView在另一个文本视图(TextView)下方居中显示。

首先,在布局文件中声明一个RelativeLayout,并在其内部添加两个TextView。

代码语言:txt
复制
<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

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

没有搜到相关的沙龙

领券