Android图像相关
badboy1110知识,首先是Bitmap:从资源文件中得到bitmap有两种方式:一:Resourcesr=getResources();InputStreamis=r.openRawResource(R.drawable.icon);BitmapDrawablebmpDraw=newBitmapDrawable(is);Bitmapbmp1=bmpDraw.getBitmap();二: BitmapDrawabledrawable=(BitmapDr...