我的imageview没有在edittextfield的左边对齐

时间:2013-10-30 08:49:41

标签: android android-layout

下面是我的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" />

3 个答案:

答案 0 :(得分: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>

答案 1 :(得分: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" />

答案 2 :(得分: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" />