0

我想要一个 EditText 下方的图像,这样它就可以让我看到我实际上是在图像上书写的。例如图像上显示的光标。有人可以帮助我吗?

4

2 回答 2

1

首先,您可以将图像设置为 Edittext 的背景

其次,您可以像这样使用 frameLayout

<FrameLayout
    ...... 
    ...... >
<ImageView
    .....
    ....../>
<EditText
    ....
    ..../>
</FrameLayout>
于 2012-12-12T11:10:21.220 回答
0

您可以按照 Android Killer 的说明进行操作,也可以使用相对布局,然后放置一个 imageview,然后将 edittext 放在 imageview 之前。代码会像

<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"
    tools:context=".EventActivity" >

    <ImageView 
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="#CCFFCC"/>
    <EditText
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="#00000000"
        />

</RelativeLayout>
于 2012-12-12T11:16:50.360 回答