0

下面是我的 xml 代码,我的 imageview 没有显示在 edittext 的左侧,知道为什么吗??????右侧图像视图将显示,但左侧图像视图在屏幕上不可见

       <RelativeLayout 

android:layout_width="wrap_content"
android:layout_height="wrap_content" >


     <ImageView
    android:id="@+id/imageView1"
    android:padding="5dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"



 android:layout_alignLeft="@+id/editText1"
    android:src="@drawable/ic_launcher" />


<EditText
    android:id="@+id/editText1"
    android:layout_width="fill_parent"

    android:layout_height="wrap_content"
    android:layout_centerVertical="true" >

</EditText>
 <ImageView
    android:id="@+id/imageView1"
    android:padding="5dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignTop="@+id/editText1"
    android:layout_alignBottom="@+id/editText1"
    android:layout_alignRight="@+id/editText1"
    android:src="@drawable/ic_launcher" />

4

3 回答 3

1
       <EditText
        android:id="@+id/editText1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true" 
        android:drawableLeft="@drawable/ic_launcher"
        android:drawableRight="@drawable/ic_launcher"
        >
    </EditText>

  <RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <EditText
        android:id="@+id/editText1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@+id/imageView1" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:padding="5dp"
        android:src="@drawable/ic_launcher" />

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@id/editText1"
        android:padding="5dp"
        android:src="@drawable/ic_launcher" />
</RelativeLayout>
于 2013-10-30T08:52:48.743 回答
0

尝试这个。

<RelativeLayout 
android:layout_width="wrap_content"
android:layout_height="wrap_content">

     <ImageView
        android:id="@+id/imageView1"
        android:padding="5dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:src="@drawable/ic_launcher"
        android:layout_centerVertical="true" />
     <ImageView
        android:id="@+id/imageView2"
        android:padding="5dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"
        android:src="@drawable/ic_launcher" />
<EditText
    android:id="@+id/editText1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignRight="@+id/imageView1"
    android:layout_alignLeft="@+id/imageView2"
    android:layout_centerVertical="true" />
于 2013-10-30T08:59:32.300 回答
0

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

    android:padding="5dp"
    android:src="@drawable/ic_launcher" />

<EditText
    android:id="@+id/editText1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_toLeftOf="@+id/imageView2"
    android:layout_toRightOf="@+id/imageView1"
    android:layout_centerVertical="true"
     >
</EditText>

<ImageView
    android:id="@+id/imageView2"
    android:layout_width="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_height="wrap_content"

    android:src="@drawable/ic_launcher" />

于 2013-10-30T10:20:14.903 回答