以下は、「ここに電話番号を入力してください」というキャプション付きのテキスト ボックスを作成するための 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>