0

我有以下布局,基本上将“消息”显示为内置“消息”的气泡。我只需要在右侧显示一个箭头图像,图像已显示,但问题是:

"EditText"有很多文字时,它占据整个宽度,ImageView仍然显示但出现在“ EditText”的顶部

我怎么能阻止“EditText”占据整个宽度,我试过android:layout_weight但没用

任何线索?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >
    <!--    android:background="#FFDBE2ED"-->
 <LinearLayout 
        android:id="@+id/wrapper"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
         android:background="#00DBE2ED"
          >

    <RelativeLayout
        android:id="@+id/wrapper2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#00DBE2ED"
        android:weightSum="1.0" 
       >
    <!--  android:layout_gravity="center" -->
        <EditText
            android:id="@+id/comment"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:editable="false" 
            android:layout_marginTop="5dip"
            android:layout_marginRight="5dip"
            android:layout_marginLeft="5dip"
            android:background="@drawable/bubble_yellow"
            android:paddingLeft="10dip"
            android:text="Hello bubbles!"
            android:textColor="@android:color/primary_text_light"
            android:layout_weight=".70" 
             />
         <TextView
            android:id="@+id/sender"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:layout_margin="0dip"

            android:paddingLeft="5dip"
            android:paddingRight="2dip"
            android:text="Hello bubbles!"

           android:textColor="#b9dcdcdc"
           android:textSize="11sp"    
            android:layout_below="@+id/comment"

            />
           <ImageView
    android:id="@+id/aquaplayicon"
    android:src="@drawable/aquaplayicon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:clickable="true"
     android:onClick="onClickGirl"
    android:layout_alignParentRight="true"
    android:paddingRight="5dip"
     android:layout_centerVertical="true"
      android:layout_weight=".30"

    />

    </RelativeLayout>


    </LinearLayout>


</LinearLayout>
4

6 回答 6

1

将 EditText 设置为一些预定义的大小:

说,

android:layout_width="80dp"

于 2013-02-21T17:45:25.637 回答
1

在 EditTextImageView之前添加EditText 并使用android:layout_toLeftOf="@id/aquaplayicon"

并且layout_weight不适用于RelativeLayout

编辑:试试这个

<LinearLayout 
            android:id="@+id/wrapper"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" 
            android:background="#00DBE2ED"
            android:orientation="vertical"
              > 
        <LinearLayout
            android:id="@+id/wrapper2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="#00DBE2ED"
            android:weightSum="1.0" 
            android:orientation="horizontal"
           >
        <!--  android:layout_gravity="center" -->
            <EditText
                android:id="@+id/comment"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"

                android:editable="false" 
                android:layout_marginTop="5dip"
                android:layout_marginRight="5dip"
                android:layout_marginLeft="5dip"
                android:background="@drawable/bubble_yellow"
                android:paddingLeft="10dip"
                android:text="Hello bubbles!"
                android:textColor="@android:color/primary_text_light"
                android:layout_weight="1" 
                 />

               <ImageView
                android:id="@+id/aquaplayicon"
                android:src="@drawable/aquaplayicon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:clickable="true"
                android:onClick="onClickGirl"
                android:paddingRight="5dip"
                android:layout_centerVertical="true"

        />

        </LinearLayout>
         <TextView
                android:id="@+id/sender"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"

                android:layout_margin="0dip"

                android:paddingLeft="5dip"
                android:paddingRight="2dip"
                android:text="Hello bubbles!"

               android:textColor="#b9dcdcdc"
               android:textSize="11sp"    
                android:layout_below="@+id/comment"

                />

        </LinearLayout>
于 2013-02-21T17:53:23.503 回答
1

我会尝试将您更改RelativeLayout为水平方向LinearLayout并从左到右添加元素。然后您可以使用 android:layout_weight 确保所有内容都显示在屏幕上。

于 2013-02-21T18:21:03.680 回答
1

为您的线性布局中的组件赋予 layout_weight 并设置 android:layout_width="0dip"

于 2013-08-30T05:16:24.943 回答
1

如果您正在使用一些背景资源并希望您的 EditText 大小保持不变并且可绘制然后设置

andrid:maxEms="5";    // You can use any small value, 

其他明智的使用

andrid:maxEms         // For Max width with respect to number of character (Text)
android:maxWidth      // For max with in dp
于 2014-10-16T07:15:19.387 回答
1

尝试将 android:layout_width="fill_parent" 更改为 android:layout_width="wrap_content"

于 2014-11-04T18:15:16.717 回答