InterviewSolution
Saved Bookmarks
| 1. |
How do you pass the data to sub-activities android? |
|
Answer» Using with Bundle, we can pass the data to sub activities. Bundle bun = new Bundle(); bun.putString("EMAIL", "contacttutorials.com");
|
|