<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#000000"
android:textSize="18dip"
android:background="#00FF00"
android:text="文本內容"
android:gravity="center_vertical|center_horizontal"
/>
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="18dip"
android:background="#FFFFFF"
android:textColor="#FF0000"
android:text="設置字符串顯示為*"
android:gravity="center_vertical|center_horizontal"
/>
在運行之後第一個testview裡面的“文本內容沒有顯示出來”,只顯示了第二個testview裡面的內容,知道是被覆蓋了,但不知道如何修改,使兩個testview裡面的內容在兩行顯示
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<TextView android:id="@+id/textView2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#000000"
android:textSize="18dip"
android:background="#00FF00"
android:text="文本內容"
android:gravity="center_vertical|center_horizontal"
/>
<TextView android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView2"
android:layout_below="@+id/textView2"
android:textSize="18dip"
android:background="#FFFFFF"
android:textColor="#FF0000"
android:text="設置字符串顯示為*"
android:gravity="center_vertical|center_horizontal"
/>
</RelativeLayout>