Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android. Avoid scaling of background

Tags:

android

In a start activity of 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.

like image 345
Tima Avatar asked Oct 15 '10 16:10

Tima


1 Answers

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.

like image 167
Romain Guy Avatar answered Sep 24 '22 07:09

Romain Guy