TextView 位于自定义视图之上

发布于 2024-12-11 02:13:41 字数 672 浏览 0 评论 0原文

如何在 CustomView 下方显示 TextView?现在 TextView 位于 CustomView 文本之上。

<RelativeLayout
android:id="@+id/gamelayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<com.sample.CustomView
android:id="@+id/customview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
/>
<TextView
android:id="@+id/displayMetrics"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5sp"
android:textColor="#000000"
android:text="METRICS"></TextView>
</RelativeLayout>

How do I display the TextView below the CustomView? Right now TextView is on top of CustomView text.

<RelativeLayout
android:id="@+id/gamelayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<com.sample.CustomView
android:id="@+id/customview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
/>
<TextView
android:id="@+id/displayMetrics"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5sp"
android:textColor="#000000"
android:text="METRICS"></TextView>
</RelativeLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傾城如夢未必闌珊 2024-12-18 02:13:41

一种方法是在布局中移动其声明,以便 TextView 首先出现。

One way is to move its declaration in the layout so that the TextView goes first.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文