<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/create" />
</LinearLayout>
资源文件 bg 为 9.png 图片 此时 Button 跟 LinearLayout 的边距并不是 0 这个边距和 .9 缩放后的距离有关
要设置 LinearLayout 内的 View 布局和 .9 无关 设置 LinearLayout 的 padding 为 0 即可
即
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
android:padding="0dp"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/create" />
</LinearLayout>
更多可参考
http://stackoverflow.com/questions/3904852/android-layout-broken-with-9-patch-background
本文介绍了解决Android布局中使用.9图片作为背景时,内部视图与边缘间距异常的问题。通过设置LinearLayout的padding为0dp,可以确保内部元素如Button与边缘紧密贴合,不受.9图片缩放的影响。
842

被折叠的 条评论
为什么被折叠?



