| android Programming Glossary: affinityUp navigation broken on JellyBean? http://stackoverflow.com/questions/14602283/up-navigation-broken-on-jellybean  on API 16 platforms it performs this check based on task affinity. Still in the case of this app things work out to shouldUpRecreateTask.. 
 HelloAndroid emulator problem http://stackoverflow.com/questions/2317167/helloandroid-emulator-problem  is the name of my AVD. I used task manager to set the affinity for the emulator to use all CPUs and set the priority to high... 
 View the Task's activity stack http://stackoverflow.com/questions/2442713/view-the-tasks-activity-stack  clearOnBackground true numActivities 2 rootWasReset true affinity android.task.contacts intent act android.intent.action.MAIN.. clearOnBackground true numActivities 1 rootWasReset true affinity com.android.launcher intent act android.intent.action.MAIN cat.. 
 Android singleTask or singleInstance launch mode? http://stackoverflow.com/questions/3219726/android-singletask-or-singleinstance-launch-mode  By default all the activities in an application have an affinity for each other that is there's a preference for them all to.. 
 How do I get multiple icons to launch different activities in one application? http://stackoverflow.com/questions/3270409/how-do-i-get-multiple-icons-to-launch-different-activities-in-one-application  in another task. You can do this by specifying its task affinity. This is done with the attribute android taskAffinity . By default.. . By default all activities share the same task affinity that defaults to main package specified in the manifest. On.. 
 Altering the result of getRecentTasks http://stackoverflow.com/questions/6258980/altering-the-result-of-getrecenttasks  mine. Create within your manifest a disabled activity with affinity equal to the empty string. In your program enable it and then.. 
 Notification to restore a task rather than a specific activity? http://stackoverflow.com/questions/6575730/notification-to-restore-a-task-rather-than-a-specific-activity  this activity. Make sure that in the manifest the task affinity of this activity is the same as the task affinity of the other.. the task affinity of this activity is the same as the task affinity of the other activities in your application by default it is.. 
 Up navigation broken on JellyBean? http://stackoverflow.com/questions/14602283/up-navigation-broken-on-jellybean 
 HelloAndroid emulator problem http://stackoverflow.com/questions/2317167/helloandroid-emulator-problem  emulator using the command line emulator @Android22 Android22 is the name of my AVD. I used task manager to set the affinity for the emulator to use all CPUs and set the priority to high. My CPU usage was now about 13 mostly due to the emulator... 
 View the Task's activity stack http://stackoverflow.com/questions/2442713/view-the-tasks-activity-stack  Manager State TaskRecord 44d07218 #4 A android.task.contacts clearOnBackground true numActivities 2 rootWasReset true affinity android.task.contacts intent act android.intent.action.MAIN cat android.intent.category.LAUNCHER flg 0x10600000 cmp com.android.contacts.. false idle true TaskRecord 44c4ee90 #2 A com.android.launcher clearOnBackground true numActivities 1 rootWasReset true affinity com.android.launcher intent act android.intent.action.MAIN cat android.intent.category.HOME flg 0x10600000 cmp com.android.launcher.. 
 Android singleTask or singleInstance launch mode? http://stackoverflow.com/questions/3219726/android-singletask-or-singleinstance-launch-mode  the Application Fundamentals page of the Android dev guide By default all the activities in an application have an affinity for each other that is there's a preference for them all to belong to the same task. A singleInstance activity stands alone.. 
 How do I get multiple icons to launch different activities in one application? http://stackoverflow.com/questions/3270409/how-do-i-get-multiple-icons-to-launch-different-activities-in-one-application    What you need to do is have your settings activity launch in another task. You can do this by specifying its task affinity. This is done with the attribute android taskAffinity . By default all activities share the same task affinity that defaults.. task affinity. This is done with the attribute android taskAffinity . By default all activities share the same task affinity that defaults to main package specified in the manifest. On your settings activity you can specify android taskAffinity.. 
 Altering the result of getRecentTasks http://stackoverflow.com/questions/6258980/altering-the-result-of-getrecenttasks  I spoke about the issue. Errors introduced are entirely mine. Create within your manifest a disabled activity with affinity equal to the empty string. In your program enable it and then start it up using an intent flagged FLAG_ACTIVITY_NEW_TASK... 
 Notification to restore a task rather than a specific activity? http://stackoverflow.com/questions/6575730/notification-to-restore-a-task-rather-than-a-specific-activity  top of the task stack finish  Set up your notification to start this activity. Make sure that in the manifest the task affinity of this activity is the same as the task affinity of the other activities in your application by default it is if you haven't.. to start this activity. Make sure that in the manifest the task affinity of this activity is the same as the task affinity of the other activities in your application by default it is if you haven't explicitly set android taskAffinity . When the.. 
 |