我试图在我的android项目中将背景图像放到linearlayout。一切都很好,除了屏幕左右两侧的渐弱边缘。我的背景图片尺寸为52x602,最初没有这样的渐变边缘。我希望背景图像覆盖所有区域。它也是由设计师完成的,我认为使用9-patch(图像周围的黑色边框)。如何在没有这些边缘的情况下正确设置背景?
在模拟器中它看起来像这样:
XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/login_background"
android:orientation="vertical"
>
</LinearLayout>
答案 0 :(得分:1)
好的,自己回答了。 .png文件如果是9个补丁文件,则必须有.9.png结尾...所以,如果有人遇到同样的问题,那么你就会知道。
答案 1 :(得分:0)
尝试将fadingEdge设置为无
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/login_background"
android:orientation="vertical"
android:fadingEdge="none"
>
</LinearLayout>