下面是我用於創建帶有標題「在此輸入電話號碼」的文本框的xml代碼。我有一個編輯框可以獲取電話號碼,也可以獲得一個按鈕。 問題是文本框和編輯框相互重疊。如何解決這個問題呢。定義佈局
<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" >
<TextView android:id="@+id/textLabel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Enter number to dial"
/>
<EditText android:id="@+id/phoneNumber"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
/>
<Button android:id="@+id/callButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="Show Dialer"
/>
</RelativeLayout>
如果您的應用的目標API級別爲8+,則應始終使用match_parent而不是fill_parent。 Fill_parent在API級別8中重命名爲match_parent。認爲它們在功能上相同,match_parent現在是標準。 – 2012-07-13 17:04:25