-2

我的应用程序中有两个 TextView,但第二个没有显示。我该如何解决?

<TextView
    android:id="@+id/logo"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:layout_gravity="center"
    android:text="Medieval 2" 
    android:textSize="30sp"
    android:background="#FF0000"
    android:textColor="#FFFFFF"/>
<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/logo"
    android:text="The Video Game"/>
4

1 回答 1

-2

你可以试试这个:

代替

android:layout_below="@id/logo"

android:layout_below="@+id/logo"

如果这不起作用,图形布局可能会有警告。

于 2013-01-30T02:03:12.530 回答