0
我有下面xml
:Android RelativeLayout - TextView重疊按鈕...爲什麼?
<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"
android:id="@+id/container"
tools:context="${packageName}.${activityClass}" >
<ImageButton
android:id="@+id/addTimerButton"
android:src="@android:drawable/ic_input_add"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:onClick="addTimer"
/>
<TextView
android:id="@+id/tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/addTimerButton"
android:text="00:00:00" />
<TextView
android:id="@+id/tv2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv2"
android:text="00:00:00" />
</RelativeLayout>
第一TextView tv1
是正確的按鈕下方但實際上tv2
重疊的按鈕。我期望tv2
低於tv1
...
有人可以幫助澄清這是如何工作?
Jeeez我覺得啞 – Segolas