3

In FragmentActivity moveTaskToBack(true) is not working when activity launchMode is singleInstance.

I have tried move task to back not working properly android

Community
  • 1
  • 1
user
  • 245
  • 1
  • 4
  • 12

2 Answers2

4

I solved the problem.

launchMode=singleTop

user
  • 245
  • 1
  • 4
  • 12
0

Just write the following code.

@Override
public void onBackPressed() {
    moveTaskToBack(true);
    //  super.onBackPressed();
}
Pang
  • 9,564
  • 146
  • 81
  • 122
TanuPriya
  • 13
  • 1
  • 3