我試圖在一個佈局中顯示兩個文本,以便它們一個接一個地顯示,但下面的代碼將字符串粘貼到另一個之上。我該怎麼辦。我想這兩個textviews之間交換FILL_PARENT & WRAP_CONTENT卻是毫無價值Android佈局內容顯示問題
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerHorizontal="false"
android:layout_centerVertical="false"
android:text="@string/hello_world"
tools:context=".StartingPoint" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="false"
android:layout_centerVertical="false"
android:text="@string/testing"
tools:context=".StartingPoint" />
你需要同時顯示兩個文本? – AkashG 2012-07-21 11:11:03