如何阻止EditText在RelativeLayout中占用整个宽度

时间:2013-02-21 17:43:22

标签: android

我有以下布局,基本上显示“消息”作为内置“消息”的泡沫更加苗条。我只需要在右边显示一个箭头图像,显示图像,但问题是:

"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>

6 个答案:

答案 0 :(得分:1)

将EditText设置为某个预定义大小:

说,

android:layout_width =“80dp”

答案 1 :(得分:1)

ImageView之前添加EditText 并在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>

答案 2 :(得分:1)

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

答案 3 :(得分:1)

将layout_weight提供给linearlayout中的组件并设置android:layout_width =“0dip”

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

答案 5 :(得分:1)

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