In my application I want to save some string data into an array. This data should then be fetched by the another activity in a ListView.
I am really confused. I have read that the back button calls onDestroy() can close up your currently-running activity
In my main activity I have a menu and when a menu option is selected an Intent is created and a new activity is started.When that acti开发者_Python百科vity completes the process should return back to
Is ther开发者_C百科e any way to determine what the name of the previous activity in the stack was without passing some data through an Intent Bundle?There is this method ComponentName getCallingActivi
I have this code: Intent 开发者_JS百科intent = new Intent(currentActivity, nextActivity); Bundle bundle = new Bundle();
I know there are much discussions about this but i cannot get this to work properly. Activity (A) = singleTop and can receive android.intent.action.SEND
I want to know whether a single button in Android can call a web service as well as start another activity i.e move to another splash screen when pressed.
I have a ListActivity which displays a ListView. I\'m starting the activity from my main activity, and I\'d like for the list view to appear as a subview in the view of my main activity. How do I do t
I am trying to have a picture show up in the middle of the screen guiding people what to press (eg an arrow to a button). What do I use so that the arrow design will show up at the appropriate spot an
I\'m implementing a chat a开发者_JAVA百科pplication. The user is able to have multiple chats open simultaneously, and I want to allow him to switch between these chats with swiping left or right. Like