Как отобразить TextView под CustomView? Прямо сейчас 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>
Один из способов - переместить объявление в макете, чтобы TextView шел первым.
TextView