Need to override onNewIntent otherwise old intent is returned since activity is declared singleTop
This commit is contained in:
parent
9644e4b80d
commit
c5f142553d
1 changed files with 5 additions and 1 deletions
|
@ -242,7 +242,11 @@ public class MapActivity extends AccessibleActivity {
|
|||
return l;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected void onNewIntent(final Intent intent)
|
||||
{
|
||||
setIntent(intent);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onResume() {
|
||||
|
|
Loading…
Reference in a new issue