2.可确保最后一张重复图片是完整的,就是几个完整的一样的图片X轴重复
Resources res = context.getResources();
Bitmap bitmap = BitmapFactory.decodeResource(res, R.drawable.wave);
holder.viewWave.setImageBitmap(BitmapHelper.createRepeater(screenWidth,
bitmap));//screenWidth为屏幕宽度(或显示图片的imageview宽度)
BitmapHelper.java 中的方法
public static Bitmap
createRepeater(int width, Bitmap src) {
int count = (width + src.getWidth() - 1) / src.getWidth(); //计算出平铺填满所给width(宽度)最少需要的重复次数
Bitmap bitmap = Bitmap.createBitmap(src.getWidth()*count, 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;
}
在layout中设置imageview的scaleType为fitXY
<ImageView
android:id="@+id/view_wave"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY" />
效果图: