I’m developing an android app that needs 2 separate activities running at the same time, they both have their own layout. What i am doing right now is creating 2 different intents and start them in sequence. But it looks like they are not running at the same time, I have to quit the first activity to start the second one.
Can someone help me with this issue? If I can display 2 activities at the same time using split screen, that will be awesome.
Thank you!
I’m developing an android app that needs 2 separate activities running at the same
Share
What exactly are your needs for the project? You can setup a single layout with 2 RelativeLayouts overlapping, and just bringToFront the one that you will need, and use Threads to do your processing. Not clean, but it would work.