Is it possible to make an array with two data types in android programming. I want to make an array that hold Bitmap and a number is that possible, if not is there any other way to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
Sure, use an array of Should you? Probably not–why store two different things in the same array? Should you be using a map? If the bitmap and number are tightly coupled, create an object that encapsulates them both, and create an array of that new type. Otherwise your array operations will require type checking manually. You might also want to consider using a collection instead, like an |
|||||||||||||
|
|
Array hold same type data but List can hold different type data. So you can use List type collection such ArrayList, LinkedList,Stack, Vector |
|||
|
|