大家好,我正在从相机中拍摄图像并将其显示在 中ImageView
,接下来单击 aButton
我将使用以下代码将图像分成 9 等份
ArrayList<Bitmap>cut=new ArrayList<Bitmap>(split);
BitmapDrawable bd=(BitmapDrawable)pic.getDrawable();
Bitmap b=bd.getBitmap();
Bitmap cutimage=Bitmap.createScaledBitmap(b, b.getWidth(), b.getHeight(), true);
rows=cols= (int) Math.sqrt(split);
hgt=b.getHeight()/rows;
wdt=b.getWidth()/cols;
ArrayList<Bitmap> breakedimages== getIntent().getParcelableArrayListExtra("breaked image");
我将所有拆分后的图像放在 Arraylist 中,接下来如何将这些拆分后的图像移入GridView
. 我必须在网格视图中以正确的顺序(实际图像)排列所有图像后,将拆分的图像混杂在一起,GridView
然后应该显示吐司。
我已成功拆分图像并显示在网格视图中,接下来我无法将它们变成混乱的顺序,任何人都可以帮助我。