我的布局有一个 9 补丁背景图像,当显示分辨率小于图像 (800x480px) 时,它可以正常工作。但是,当我在具有更大分辨率(例如 1280x800 像素)的设备上对其进行测试时,布局会被破坏。这里有两张图片:
这是相关的布局代码:
<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-patch 不起作用。但这是什么原因,我该如何处理呢?
最好的祝福!