Search code examples
androidandroid-intentandroid-background

Change activty in background


Can I make an Intent in application to change from one activity to other without bringing to foreground. For Example activity A is in foreground and activity B is in background . I have to change activity B to Activity C without bringing to foreground.


Solution

  • The safest bet would be to start using fragments. Could you describe your problem a little bit more in depth. I might be able to help you then. I, myself, have never encountered such a situation since my activities extend my use-case specific custom AppCompatActivity classes. I try to offload most of my work to other classes. For example "MathPlus", "ViewUtils", "ThemeHelper" and numerous other. It's a mess. But my mess. And I admire it every single day.