TextView 位于自定义视图之上
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是在布局中移动其声明,以便
TextView
首先出现。One way is to move its declaration in the layout so that the
TextView
goes first.