携帯電話から写真を取得して配列に保存できます。その後、それらを画面に表示しています。しかし、それらはすべて異なる形とサイズです。それらをすべて同じサイズと形状で表示したい。何か案が?
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);}