アプリの背景画像を繰り返す方法


314

アプリで背景画像を設定しましたが、背景画像が小さく、繰り返し表示して画面全体に塗りつぶします。私は何をすべきか?

<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">

回答:


429

わかりました、これが私のアプリにあるものです。ListViewスクロール中にsが黒くなるのを防ぐためのハックが含まれています。

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">
//

1
これも試してみてください:android:gravity = "clip_horizo​​ntal" ---画像の変形を回避
Felipe

2
私はこれを試しましたが、すべての画面に引き伸ばされたタイルは1つだけでした:(
Sergey Metlov

私が持っている場合はScrollView、背景がそれに繰り返すように配置して、私は長い長いリストを持っているとき、私はにOutOfMemory例外に問題はありませんScrollViewが非常に長くなりますか?
AndreiBogdan 2012

覚えておくべきことの1つは、drawable-hdpi、drawable-mdpi、drawable-ldpiのフォルダーを用意する必要があることです。この機能を高くするには、このbackrepeat.xmlファイルと関連画像をそれぞれに追加する必要があります。中および低dpi(ドット/インチ)画面サイズ。
saber tabatabaee yazdi 2013年

2
@sabertabatabaeeyazdiこれらのフォルダにある画像のみが必要です。XMLはdrawable(withoud -*dpi)フォルダーに配置できます。
Jaroslav

176

ドローアブルxmlには、それを行うためのプロパティがあります。android:tileMode = "repeat"

このサイトを参照してください:http : //androidforbeginners.blogspot.com/2010/06/how-to-tile-background-image-in-android.html


38
これがどうしてこんなに低い評価なのか本当にわかりません。群れの本能?これは、タイル張りの背景のネイティブ実装である
のMichałK

5
これは魅力のように機能します。また、これはそれを行う正しい方法のようです。
JCasso

3
これが受け入れられる答えであることに同意します。それは本当にシンプルで完璧に動作します!
フォン

6
+1記事に間違って記載されている1つだけを修正する必要がありますyou'll need to add this backrepeat.xml file and the relevant images to each of these to allow this functionality in high, medium and low dpi。参照されるドローアブルをすべての密度バケットに配置するだけです。参照するXMLドローアブルはdrawableフォルダーに配置でき、それで十分です。
CAW

これは、プロが説明したものです
Muneeb Mirza

69

次に、背景画像の繰り返しのpure-java実装を示します。

@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);
}

この場合、背景画像はres / drawable / bg_image.pngに保存する必要があります。


6
android.graphics.Shader
2012年

私が持っている場合はScrollView、背景がそれに繰り返すように配置して、私は長い長いリストを持っているとき、私はにOutOfMemory例外に問題はありませんScrollViewが非常に長くなりますか?
AndreiBogdan 2012

なぜこれが機能しないのですか?減価償却とは、これらのコマンドが将来廃止される可能性があるため、今後使用しないことを意味します。API 19では、これは@plowmanの提案どおりに機能します。また、BitmapDrawableは廃止されていませんが、一部のメソッドのみが廃止されています。上記のコードを編集したので、廃止されたメソッドを使用する必要はありません。
Oliver Hausler、2015年

16

プロウマンの答えを拡張して、Javaで背景画像を変更する非推奨バージョンを次に示します。

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

3
// 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);*/
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.