Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have set a background image in my app, but the background image is small and I want it to be repeated and filled in the whole screen. What should I do

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="@drawable/bg" android:tileMode="repeat">
share|improve this question
2  
I made a blog entry on this subject : androidblogger.blogspot.com/2009/01/… – alocaly Aug 12 '11 at 22:29

4 Answers

up vote 180 down vote accepted

Ok, here's what I've got in my app. It includes a hack to prevent ListViews from going black while scrolling.

drawable/app_background.xml:

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

values/styles.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <style name="app_theme" parent="android:Theme">
        <item name="android:windowBackground">@drawable/app_background</item>
        <item name="android:listViewStyle">@style/TransparentListView</item>
        <item name="android:expandableListViewStyle">@style/TransparentExpandableListView</item>
    </style>

 <style name="TransparentListView" parent="@android:style/Widget.ListView">
  <item name="android:cacheColorHint">@android:color/transparent</item>
 </style>

 <style name="TransparentExpandableListView" parent="@android:style/Widget.ExpandableListView">
  <item name="android:cacheColorHint">@android:color/transparent</item>
 </style>

</resources>

AndroidManifest.xml:

//
<application android:theme="@style/app_theme">
//
share|improve this answer
1  
Try with this too: android:gravity="clip_horizontal" --- it avoid image deformation – Felipe Micaroni Lalli Sep 30 '11 at 21:37
I've tried this but saw only single tile stretched to all the screen :( – Sergey Metlov Mar 2 '12 at 19:24
If I have a ScrollView and place a background to repeat on it and I have a long long list, won't I have problems with OutOfMemory exception when the ScrollView becomes very long? – AndreiBogdan Aug 31 '12 at 9:40

There is a property in the drawable xml to do it. android:tileMode="repeat"

See this site: http://androidforbeginners.blogspot.com/2010/06/how-to-tile-background-image-in-android.html

share|improve this answer
9  
I really don't know how is this so low rated. Herd instinct? This is the native implementation of tiled background – MichaƂ K Apr 8 '12 at 13:00
This one works like a charm. Also this one seems like the right way to do it. – JCasso Jul 11 '12 at 3:02
I agree that this should be the accepted answer. It's really simple and works perfectly! – strawberryjam Feb 11 at 6:07

Here is a pure-java implementation of background image repeating:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.bg_image);
    BitmapDrawable bitmapDrawable = new BitmapDrawable(bmp);
    bitmapDrawable.setTileModeXY(Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
    LinearLayout layout = new LinearLayout(this);
    layout.setBackgroundDrawable(bitmapDrawable);
}

In this case, our background image would have to be stored in res/drawable/bg_image.png.

share|improve this answer
4  
what is Shader? – Nidhin_toms Mar 1 '12 at 1:15
4  
android.graphics.Shader – Peter Willsey May 15 '12 at 22:19
If I have a ScrollView and place a background to repeat on it and I have a long long list, won't I have problems with OutOfMemory exception when the ScrollView becomes very long? – AndreiBogdan Aug 31 '12 at 9:41
// Prepared By Muhammad Mubashir.
// 26, August, 2011.
// Chnage Back Ground Image of Activity.

package com.ChangeBg_01;

import com.ChangeBg_01.R;

import android.R.color;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;

public class ChangeBg_01Activity extends Activity
{
    TextView tv;
    int[] arr = new int[2];
    int i=0;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        tv = (TextView)findViewById(R.id.tv);
        arr[0] = R.drawable.icon1;
        arr[1] = R.drawable.icon;

     // Load a background for the current screen from a drawable resource
        //getWindow().setBackgroundDrawableResource(R.drawable.icon1) ;

        final Handler handler=new Handler();
        final Runnable r = new Runnable()
        {
            public void run() 
            {
                //tv.append("Hello World");
                if(i== 2){
                    i=0;            
                }

                getWindow().setBackgroundDrawableResource(arr[i]);
                handler.postDelayed(this, 1000);
                i++;
            }
        };

        handler.postDelayed(r, 1000);
        Thread thread = new Thread()
        {
            @Override
            public void run() {
                try {
                    while(true) 
                    {
                        if(i== 2){
                            //finish();
                            i=0;
                        }
                        sleep(1000);
                        handler.post(r);
                        //i++;
                    }
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        };


    }
}

/*android:background="#FFFFFF"*/
/*
ImageView imageView = (ImageView) findViewById(R.layout.main);
imageView.setImageResource(R.drawable.icon);*/

// Now get a handle to any View contained 
// within the main layout you are using
/*        View someView = (View)findViewById(R.layout.main);

// Find the root view
View root = someView.getRootView();*/

// Set the color
/*root.setBackgroundColor(color.darker_gray);*/
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.