Are they always key, value pairs?  If so you could just use two
parallel string arrays:

String[] keys = createKeys();
String[] values = createValues();

(keys.length == values.length)

bundle.putExtra("keys", keys);
bundle.putExtra("values", values);



On Nov 30, 12:55 am, pavan <pavankumar.k...@gmail.com> wrote:
> Here is my Problem :
>
> I want to pass multi dimensional String array between two activities
> or pages.
>
> I already tried with bundle.putextra like methods. But those allow
> only one dimensional string array.
>
> I really hope you can help me with example java code on this . Here is
> my String array, final String[][] arr2={{"1","pavan"},{"2","kumar"},
> {"3","kora"}};
>
> Please do reply.Its very urgent for my project .
>
> Thank you!

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to