Sending data from one activity to the other
What are the diffrent kinds of data tha开发者_运维技巧t can be passed from an activity to another?
You can pass any primitive data types and also ArrayLists. Please use the eclipse and see the references which will list down all available methods.
You can pass the data from one activity to another using extras. (putExtra() & getExtra())
You can also do it through an sqlite database.
精彩评论