Is it possible to have two active applications in android?

后端 未结 2 1886
一生所求
一生所求 2021-01-15 12:59

In Android , Is it possible to display one application(rendering Video) as a floating screen in one half of the screen. and at the same time interacting with another applica

2条回答
  •  说谎
    说谎 (楼主)
    2021-01-15 13:28

    In short, the answer is no. There is no way currently for multiple apps to be visible on the screen at the same time.

    You could theoretically reuse code over multiple different applications, so you could create a video window that could play video, while simultaneously showing a text editor fragment that allows notes to be taken, and you can send data between different applications using an Intent, but unlike modern desktop computers, only one application can currently have the focus of the screen at a time in Android.

提交回复
热议问题