码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-10-29 19:29:41      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   ar   sp   数据   on   

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

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

bubuko.com,布布扣

bubuko.com,布布扣

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

bubuko.com,布布扣

bubuko.com,布布扣

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

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


直接说解决方案吧:

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

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

结果:

bubuko.com,布布扣

代码:

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


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



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

标签:android   style   blog   http   color   ar   sp   数据   on   

原文地址:http://blog.csdn.net/u012319317/article/details/40588577

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!