开发者

Android. Avoid scaling of background

In a start activity o开发者_如何学编程f our android application we're using a linearlayout with an background image for whole space.

The image size is 320x480 - the same as device resolution, we're using for testing.

The problem is, the image will be scaled und looks not so nice.

I tried to use imageview instead, but I've got black borders.

Some ideas, how to avoid scaling or how to get the proper size for background image?!

Thank you in advance.

Mur.


Create a background.xml file in res/drawable and use the following:

<?xml version="1.0" encoding="utf-8"?>
<bitmap
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/background_image"
    android:gravity="center"/>

And use this background.xml as your LinearLayout's background.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜