1)第一种利用系统提供的api实现 view sourceprint? 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来轻松实现  <bitmap xmlns:Android="http://schemas.android.com/apk/res/android"              android:src="../../@drawable/img"          Android:tileMode="repeat" /> 3)第三种自己画出来 view sourceprint?01 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;   } 

更多相关文章

  1. Android5.1 7.1 系统层默认音量
  2. Android 系统设置 之 保持手机屏幕常亮的方法
  3. Android 获取系统时间的三种方式
  4. Android系统的开机画面显示过程分析(3)
  5. Windroy Lets Android run on Windows systems-- 国外androids
  6. 在android中获取系统正在运行的进程
  7. Android 光系统
  8. android如何从系统或相机中获取照片
  9. Android 调用系统摄像头拍照保存并且更新到图库

随机推荐

  1. 浅谈android add_service PERMISSION DEN
  2. SurfaceComposerClient与SurfaceFlinger
  3. Android模拟器上网的设置
  4. Android(安卓)Json数据转实体类一键转化
  5. Android中Google地图折线层(Polyline)
  6. Android(安卓)用HorizontalScrollView实
  7. Android(安卓)动态指定屏幕朝向,动态设置
  8. mac 下android开发 eclipse中找不到设备
  9. [置顶] Android中的观察者DataSetObserva
  10. 记录走过路过的那些博客