如何在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>
答案 0 :(得分:0)
一种方法是在布局中移动其声明,以便TextView
先行。