how do i pass 2 denominational array object as a parameter to another activity
how to get two dimensional array string value in another activity
S
one Solution is that you can set it as Static so that you can use that in any of your activity.
Class A{
public static String [][]str;
...
Intent l = new Intent(context,AgAppMenu.class);
l.putExtra("msg",str);
l.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(l);
}
Class B{
...
you can use it with Just A.(ArrayName)
System.out.println(A.str);
}
Hope it will Help you.