首頁  >  文章  >  Java  >  android實現背景平舖的三種方法

android實現背景平舖的三種方法

高洛峰
高洛峰原創
2017-01-20 15:46:311435瀏覽

方法1:系統api實作

Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.pic);  
//bitmap = Bitmap.createBitmap(100, 20, Config.ARGB_8888);  
BitmapDrawable drawable = new BitmapDrawable(bitmap);  
drawable.setTileModeXY(TileMode.REPEAT , TileMode.REPEAT );  
drawable.setDither(true);  
view.setBackgroundDrawable(drawable);

方法2: XML實作

xml路徑:res/drawable/bg.xml

<bitmap xmlns:android="http://schemas.android.com/apk/res/android"   
    android:src="@drawable/img"  
    android:tileMode="repeat" />

方法3: 自訂繪製

public static Bitmap createRepeater(int width, Bitmap src){  
  int count = (width + src.getWidth() - 1) / src.getWidth();  
  Bitmap bitmap = Bitmap.createBitmap(width, src.getHeight(), Config.ARGB_8888);  
  Canvas canvas = new Canvas(bitmap);  

  for(int idx = 0; idx < count; ++ idx){  
    canvas.drawBitmap(src, idx * src.getWidth(), 0, null);  
  }  

  return bitmap;  
}

更多android實作背景鋪平的三種方法相關文章請關注PHP中文網!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn