Android - Editbox Drawable没有正确填充

时间:2013-12-07 08:39:46

标签: java android android-layout

我有一个编辑框,我在其中定义了android:drawableLeft属性。

我希望EditBox看起来像这样(来自Instagram应用程序):

enter image description here

请注意,图像已正确居中,图像的顶部/右侧/左侧/底部填充似乎完全相同。右边的文字以图像的大小(我绘制的蓝线之间)为界限

当我尝试做同样的事情时,我的EditText视图如下所示:

enter image description here

我还将此多行edittext框的行号设置为3,但这无法帮助修复框大小。图像的顶部/底部有一个很大的填充物,我不知道它来自哪里。这是我的代码:

布局

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="10dp"
    android:weightSum="1" >

    <EditText
        android:id="@+id/new_post_edittext"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/rounded_edittext"
        android:drawableLeft="@drawable/ic_launcher"
        android:ems="10"
        android:gravity="top|left"
        android:hint="@string/compose_card_hint"
        android:lines="3"
        android:padding="5dip"
        android:drawablePadding="5dp"
        android:textColor="#999999" >

        <requestFocus />
    </EditText>

</LinearLayout>

圆角可拉

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="5dp"
android:shape="rectangle" >

<solid android:color="#bbbbbb" />

<stroke
    android:width="1dp"
    android:color="#2f6699" />

<corners
    android:bottomLeftRadius="5dp"
    android:bottomRightRadius="5dp"
    android:topLeftRadius="5dp"
    android:topRightRadius="5dp" />

</shape>

还有动态设置图像的代码:

Drawable img = this.getResources().getDrawable( R.drawable.sample_img );
    img.setBounds( 0, 0, 200, 200);

    EditText et = (EditText) findViewById(R.id.new_post_edittext);

    et.setCompoundDrawables( img, null, null, null );

我如何重新调整布局,使其看起来与我上面展示的Instagram相同?

由于

2 个答案:

答案 0 :(得分:0)

有两种方法可以做到。

  1. 在LinearLayout / Relative Layout中使用带有ImageView和TextView的自定义布局。无论文本和图像大小如何,它都会使您的列表项统一。
  2. 将带有EditText的drawable与行结合使用是一个坏主意。当需要在默认重力的边缘上显示图像时,请使用drawableLeft或Right。与EditText相关联的drawable的边距和填充是一项繁琐的任务。

答案 1 :(得分:0)

您是否尝试过将android:gravity="top|left"更改为android:gravity="center_vertical"