Я хотел бы сосредоточить эти фразы на мой взгляд. Я могу получить "@ + id / m_popcorn" в центре экрана, но я не могу получить "@ + id / m_keyhole" и другие текстовые представления, чтобы выстроиться под ним. Я также хотел бы, чтобы все пять фраз были сосредоточены на экране, а не центрировались только "@ + id / m_popcorn". Что я делаю не так?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="center" >
<ImageView
android:id="@+id/viola_desmond_pic"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:contentDescription="@string/desc"
android:src="@drawable/viola_desmond" />
<TextView
android:id="@+id/list_background"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#AA000000"
android:contentDescription="@string/desc" >
</TextView>
<TextView
android:id="@+id/m_popcorn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="spilled popcorn" />
<TextView
android:id="@+id/m_keyhole"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/m_popcorn"
android:layout_centerHorizontal="true"
android:text="keyhole" />
<TextView
android:id="@+id/m_pistol"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/m_keyhole"
android:layout_centerHorizontal="true"
android:text="pistol" />
<TextView
android:id="@+id/m_cat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/m_pistol"
android:layout_centerHorizontal="true"
android:text="cat" />
<TextView
android:id="@+id/m_pen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/m_cat"
android:layout_centerHorizontal="true"
android:text="pen" />
</RelativeLayout>