-4

我正在制作一个应用程序,其中我必须在一个 XML 文件中使用两个图像。(一个是徽标,另一个是一些登录模式)。在图案图像上,我必须设置两个 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>
4

4 回答 4

2

如果我正确理解这一点,您基本上希望在前景中有两个 EditText 的背景。

最好的方法是通过相对布局。像这样的东西会起作用(注意,这是伪代码,所以它不会直接起作用)

<RelativeLayout>

    <ImageView
        android:height="fill_parent"
        android:src="@drawable/some_image"
        android:width="fill_parent" />

    <EditText
        android:id="@+id/edit_text1"
        android:layout_alignParentBottom="true" />

    <EditText
        android:id="@+id/edit_text2 "
        android:layout_above="@id/edit_text1" />

</RelativeLayout>
于 2012-11-25T20:44:49.887 回答
1

您的问题有点含糊,但您可以轻松使用Relativelayout将 EditTexts 放置在 ImageView 上方。

一个基本的例子是:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/image" />

</RelativeLayout>
于 2012-11-25T20:40:52.383 回答
0

要将 edittext 放在 imageview 上方:

EditText edit = (EditText)findViewById(R.id.YOUR_EDITTEXT_ID);
ImageView image = (ImageView)findViewById(R.id.YOUR_IMAGEVIEW_ID);
image.setImageBitmap(YOUR_BITMAP);
edit.bringToFront();

上面的代码将沿 z 轴将 edittext 带到 imageview 上方。当然,您必须以 XML 或编程方式定位它们。

于 2012-11-25T20:43:52.110 回答
0

感谢大家的帮助。我已经完成了我的任务..这个应用程序适用于平板电脑,所以请据此检查利润。这是代码..

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="#fff"

<ImageView
    android:id="@+id/login"
    android:layout_width="648dp"
    android:layout_height="wrap_content"
    android:layout_marginLeft="640dp"
    android:layout_marginTop="40dp"
    android:src="@drawable/ic_login" />

<EditText 
    android:id="@+id/et1"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:cursorVisible="true"
    android:background="#000"
    android:singleLine="true"
    android:layout_marginTop="100dp"
    android:layout_marginLeft="710dp"
    android:layout_marginRight="193dp"
    android:textColor="#fff"/>

<EditText 
    android:id="@+id/et1"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:cursorVisible="true"
    android:background="#000000"
    android:singleLine="true"
    android:layout_marginTop="127dp"
    android:layout_marginLeft="710dp"
    android:layout_marginRight="193dp"
    android:textColor="#fff"/>

<ImageView 
     android:id="@+id/logo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="420dp"
    android:layout_marginLeft="2dp"
    android:src="@drawable/ic_glogo" />


 </RelativeLayout> 
于 2012-11-26T09:55:26.237 回答