我正在製作一個應用程序,我必須在一個XML文件中使用兩個圖像。 (一個是徽標,另一個是一些登錄模式)。在模式圖像上,我必須設置兩個EditText。我怎樣才能做到這一點???如何通過ImageView使用EditText
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
.
.
.
.
./>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/some image"
android:layout_marginLeft="200dp"
android:layout_marginBottom="300dp"
android:layout_marginTop="80dp">
<LinearLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
</RelativeLayout>
</relativeLayout>
你想有幾個EditTexts背景之上? – PearsonArtPhoto
是... 2編輯文本的登錄ID和Passwrd – anshika