9补丁背景图像的布局问题

时间:2012-09-09 14:04:48

标签: android image layout background resize

我的布局有一个9补丁背景图像,当显示分辨率小于图像(800x480px)时,它可以正常工作。但是,当我在具有更大分辨率的设备(例如1280x800px)上测试它时,布局会被打破。这是两张图片:

The normal and broken layout

The 9-patch image

以下是相关的布局代码:

<LinearLayout
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/chalkboard"
android:gravity="top|center"
android:orientation="vertical" >

总而言之,当图像放大时,9补丁不起作用。但是原因是什么,我该如何处理呢?

祝你好运!

1 个答案:

答案 0 :(得分:2)

你也在拉伸框架。只是不要拉伸侧面的框架。这应该做的工作: enter image description here