Android background背景图片平铺
原创
©著作权归作者所有:来自51CTO博客作者WongKyunban的原创作品,请联系作者获取转载授权,否则将追究法律责任
xml方式:
在res/drawable中创建一个xml文件(repeat_bg.xml)
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@mipmap/bg_flower"
android:tileMode="repeat" />
代码方式:
ImageView imageView = findViewById(R.id.iv_bg);
Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.mipmap.bg_flower);
BitmapDrawable bd = new BitmapDrawable(bitmap);
bd.setTileModeXY(TileMode.REPEAT , TileMode.REPEAT );
imageView.setBackgroundDrawable(bd);