I need to split the Android screen into two parts and run 2
applications (app A and app B) simultaneously.
App A will run on screen 1 and App B will run on screen 2. Both are visible to the
users. I need to implement this thing in the Android Framework.
I do not know much about the android framework and this is urgent and should be done on android 2.1
Is this possible, if yes please explain the procedure to achieve this.
Thanks in advance.
Implement Application A as a ActivityGroup and run Applicatoin B inside of it.
Related
I've developed different personal apps for android and now i'm interested in google cardboard project
So, would be possible to create an application for android to implement the same system of this project : http://www.vrdesktop.net ( windows only ). In few words mirroring the android screen inside another app that will split everything ..
actually i don't know if there are some usefull api/ways to accomplish the job.
EDIT1: i've prepared a draw to better show the idea: https://docs.google.com/drawings/d/15AYvjesIhZDTe5mfOmm5TzhRkyxmDA6L0jI9MzdKbB4/edit
After long researches i've found an open source project that is doing exactly what i was looking for:
https://github.com/frma71/sbs
P.S. Thank you for useless downvoting
I am developing an Application from which on click of a button I wanted to open an another application or TV in exactly half of the screen. How can I split the Display for 2 separate applications.
Please help me in this case.
I only wanted to show 2 applications at a time using any way.
Thanks in advance.
Have a look at this project.Here
This is similar to what you want.You can't show two applications but you can show two screens of one app at same time.
I want to customize Android source code so that it can run multiple applications on same Screen. Is that possible?
You can check out my work so far at this link
Maybe using virtual machines but is the worst option (talking in memory terms).
You can't run multiple applications on the same screen but you can run multiple screens of a single application on the same screen and on same time.....for more information see this...
Is it possible to install multiple android applications in one APK file?
Is it possible for a program to mimic the Android Homepage? Can widgets, contacts, and canvases all interact at the appropriate FPS? Is it possible for an app to make calls and IMs? Or are the ISOs used to make the original too different from Java to mimic correctly?
To a large extent yes . For a start have a look at the home app sample provided by google . http://developer.android.com/resources/samples/Home/index.html .
Once you get your home app working perfectly you can add modules which practically do everything , but a better design strategy is to split the modules which do different work , so you calling module can be a different app.
I dont think there should be a fps issue if you have good code :) .
I am working on creating multiple displays on a single screen, i.e., I want to run two different activities simultaneously.
I came to know that, to achieve this requirement we need to change the surfaceflinger code and some hardware properties in the android source.
Can anybody help me in finding the exact procedure in modifying the surfaceflinger and other parts of the android source in order to get two displays
Thanks in advance.
You cannot run two activities simultaneously just by getting two displays. Only one application/activity can be run at a time on the activity stack.