最新回答 / Keldian2016
private int[] mm = { R.drawable.m1, R.drawable.m2, R.drawable.m3, R.drawable.m4, R.drawable.mm };把多个图片资源放入drawable中,声明一个数组存储。private void initBitmap() {// if (mBitmap == null) { mBitmap = BitmapFactory.decodeResource(getResources(), mm[(int) (Mat...
2015-02-25
已采纳回答 / hyman
你好,Bitmap.createBitmap(bitmap, x, y, pieceWidth, pieceWidth)你传入的参数y + pieceWidth已经超过你的bitmap的高度了,检查下代码。
2015-02-03