编辑文本大小不应改变图像视图的大小

时间:2015-07-23 10:43:15

标签: android android-layout android-edittext android-imageview

我的Image-view低于Edit textRelative-layout

Edit-text的大小通过输入任意几行文字而增加时, Image-view的大小正在缩小。

我想要的是我的文字应该在Image-view上重叠而不是!改变它的大小。

请提出任何建议。

注意:我限制了我的编辑文字高度和scorllable。

这是代码:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:padding="5dp"
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.myappp.custom_ui.RoundedImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:id="@+id/selected_attachment"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="10dp"
    android:layout_above="@+id/caption_holder"
    app:riv_corner_radius="8dp" />

<RelativeLayout
    android:layout_width="match_parent"
    android:id="@+id/caption_holder"
    android:background="@drawable/rounded_layout"
    android:layout_alignParentBottom="true"
    android:layout_height="wrap_content">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:capitalize="sentences"
        android:layout_centerVertical="true"
        android:layout_toLeftOf="@+id/send_attachement"
        android:background="@android:color/transparent"
        android:id="@+id/add_captionon_et"
        android:hint="Add caption"
        android:scrollbars="vertical"
        android:maxLines="3"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="24sp"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:padding="10dp"
        android:id="@+id/send_attachement"
        android:textColor="@color/myapp_theme_color"/>
</RelativeLayout>

1 个答案:

答案 0 :(得分:2)

问题在于使用android:layout_above="@+id/caption_holder"。它说ImageView位于caption_holder之上,所以当调整caption_holder的大小时,ImageView也会调整大小。

尝试删除此属性。