android-activity

Set root activity/intent in Android

I'm switching between different Activities using Intents. For one Activity, I would like it to clear the history stack so when the user presses the back button, it takes them Home instead of previous activities in my application. ...

What's the android intent to show up the localization settings?

I'm sure this can be answered really easily. I just do not find the intent id for this job. I want to show up that localization settings page, where the user can select "turn on localization through wifi..." Intent intent = new Intent( ??? ); startActivity(intent); ...