首页 > 代码库 > 控件设置背景或图片后无法对齐

控件设置背景或图片后无法对齐

今天遇到安卓的一个bug,调了半天才解决。

bug描述:如下图,水平放置一个editTextView和一个按钮,通过android:layout_alignBottom="@+id/ds_bt_done"之类的方法很容易让两个组件水平对齐


现在我给按钮加个颜色(Background):



尼玛,按钮的位置怎么变了!!!

调了好久,确定这个安卓的一个bug,按钮在设了background或者color之后会变大,并且布局还是用没设background时的大小。


直接说解决方案吧:

1.不要设android:layout_alignBottom, 这个是底部对齐的意思,系统都用了错误的数据,你让它底部对齐,肯定是不行的。

2.通过调整两个空间的高度,手动实现水平对齐。

结果:


代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <Button
        android:id="@+id/ds_bt_done"
        style="@style/SubmitButton.DarkBlue"
        android:layout_width="wrap_content"
        android:layout_height="28dp"
        android:layout_alignParentRight="true"
        android:text="@string/done" />

     <com.my.widget.CustomAutoCompleteTextView
         android:drawableLeft="@drawable/ic_search"
            android:drawableRight="@drawable/ic_delete"
         android:hint=""
         android:id="@+id/textview_item_listview_tv_title"
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"
         android:layout_toLeftOf="@+id/ds_bt_done"
         android:layout_centerVertical="true"
         android:paddingTop="5dp"
         android:paddingBottom="5dp"
         android:gravity="left|center_vertical"
         android:paddingLeft="5dip"
         android:textSize="15sp" />

</RelativeLayout>


不知道有没有自动实现对齐的方法。我的思路是在代码里写个函数获取按钮当前的实际高度,或者将按钮的高度重新设置为原来的高度,不过暂时懒得写了。



控件设置背景或图片后无法对齐