摘要: public Bitmap getRoundedCornerBitmap(Bitmap bitmap){ Bitmap outBitmap = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Config.ARGB_8888); Canvas canvas = new Canvas(outBitmap); final int color =0xff424242; final Paint paint = new Paint(); final Rect rec... 阅读全文
posted @ 2013-01-14 15:41 bvin 阅读(2552) 评论(0) 推荐(0)