質問

Can I add Bitmap objects into Bitmap array in android, while trying to do that could find that there was no specific methods available for it.Any Help from any one would be highly appreciable. Thanks in advance for the help.

役に立ちましたか?

解決

Use ArrayList instead of plain Array

他のヒント

Try this :

Bitmap [] bitmapArray = new Bitmap[size];

for(int i = 0; i < bitmapArray.length; i++)
    bitmapArray[i] = your_bitmap_object;
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top