1.

How could we move the data in sub activity?

Answer»

Data COULD be moved from one ACTIVITY to another with the help of bundles.
To KNOW the coding, refer below :

EXAMPLE

Bundle b=new Bundle();
b.putString(“Email”, “[email protected]”);
i.putExtras(b); //where I is INTENT



Discussion

No Comment Found