0

我有一个要在背景下设置的edittext在此处输入图像描述

但是当我将其设置为背景时,它会自行拉伸以适合整个 EditText,如下图所示。在此处输入图像描述

下面是我的editext xml文件代码

<LinearLayout
    android:id="@+id/footer"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:visibility="visible" >

    <EditText
        android:id="@+id/comment"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:layout_weight="1"
        android:hint="@string/add_your_comment"
        android:imeOptions="actionDone"
        android:padding="5dp"
        android:background="@drawable/bg_search_field"
        android:scrollHorizontally="true"
        android:singleLine="true" />

    <ImageView
        android:id="@+id/post_comment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:padding="5dp"
        android:layout_marginRight="@dimen/fifteen_dp"
        android:src="@drawable/tick_selection" />
</LinearLayout>

如何正确设置背景?

4

3 回答 3

1

好的,所以问题只需使用我从 actionBarsherlock 库中获得的九个补丁图像即可解决,该库将其用于搜索视图。

于 2013-10-13T12:15:21.277 回答
0
// try this
<LinearLayout
            android:id="@+id/footer"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:visibility="visible" >

        <LinearLayout
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:gravity="center_vertical">
            <EditText
                    android:id="@+id/comment"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:hint="add_your_comment"
                    android:imeOptions="actionDone"
                    android:padding="5dp"
                    android:background="@drawable/bg_search_field"
                    android:scrollHorizontally="true"
                    android:singleLine="true" />
        </LinearLayout>

        <ImageView
                android:id="@+id/post_comment"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:padding="5dp"
                android:layout_marginRight="@dimen/fifteen_dp"
                android:src="@drawable/tick_selection" />
    </LinearLayout>

   // also use my uploaded image which is editext background i'm apply 9-patch so now it not stretched if editext width is large.

在此处输入图像描述

于 2013-10-14T06:18:23.900 回答
0

这条线。-

android:layout_weight="1"

使您TextView填充LinearLayout. 只需尝试将其删除。您还应该更换

android:padding="5dp"

为了

android:layout_margin="5dp"
于 2013-10-13T09:12:02.467 回答