我能夠從手機中檢索圖片並將它們存儲在數組中。之後,我將它們顯示在屏幕上。但它們都有不同的形狀和大小。我想以相同的尺寸和形狀顯示它們。任何想法?在Android中以編程方式放大圖片
photoPaths = new ArrayList<String>();
getAllPhotos(Environment.getExternalStorageDirectory(), photoPaths);
images = new Bitmap[photoPaths.size()];
apa = (AnimationPhotoView)findViewById(R.id.animation_view);
for(int i=0;i<photoPaths.size();i++)
{
File imgFile = new File(photoPaths.get(0));
if(imgFile.exists())
{
images[0] = decodeFile(imgFile);}
工作完美!我需要等待才能接受。謝謝Mac – user182192 2012-04-06 13:21:47
實際上,當使用這個時出現異常:'IllegalArgumentException:位圖大小超過32位',請檢查我的答案。 – 2013-05-07 10:42:42
使用[this](http://stackoverflow.com/a/16248911/1289716)所以你不會得到'位圖大小超過' – MAC 2013-05-07 17:06:23