[android-developers] Re: [Split the Android screen into two parts and run 2 applications simultaneously on both screen]

2009-02-15 Thread Dianne Hackborn
The documentation is pretty much the source code. Feel free to look at it, and post questions to the appropriate list (android-platform or android-framework). This is not the appropriate list, so I'll avoid further discussion here. :} On Sat, Feb 14, 2009 at 11:01 PM, Saroj (सरोज)

[android-developers] Re: [Split the Android screen into two parts and run 2 applications simultaneously on both screen]

2009-02-14 Thread सरोज
Hello Faber, One more thing you told that you can combine App A and App B into App C and have each sub App write into their own view which would be contained in another view. How to do this .can you show some example/sample ? Thanking you. Regards, Saroj On Sat, Feb 14, 2009 at 6:33 PM,

[android-developers] Re: [Split the Android screen into two parts and run 2 applications simultaneously on both screen]

2009-02-14 Thread सरोज
Hello Faber, Here App A and App B are system apps like contacts, dialer, browser, etc. I want to run these two apps simultaneously in two separate part/view of the android screen. Regards, Saroj K Pradhan On Sat, Feb 14, 2009 at 1:12 AM, Faber Fedor faberfe...@gmail.com wrote: Are App A and

[android-developers] Re: [Split the Android screen into two parts and run 2 applications simultaneously on both screen]

2009-02-14 Thread Mark Murphy
Saroj (सरोज) wrote: Here App A and App B are system apps like contacts, dialer, browser, etc. I want to run these two apps simultaneously in two separate part/view of the android screen. I do not believe that is possible, especially if they are not your applications (e.g., dialer, browser).

[android-developers] Re: [Split the Android screen into two parts and run 2 applications simultaneously on both screen]

2009-02-14 Thread सरोज
Hello Faber, I want to implement these idea in the android framework.The android screen is divided into two parts called dual screen. The android framework would manage the 2 system application and run first application on first part of screen and run second application on second part of screen

[android-developers] Re: [Split the Android screen into two parts and run 2 applications simultaneously on both screen]

2009-02-14 Thread Dianne Hackborn
This list is for programming with the SDK, please use android-framework or android-platform for talking about changes to the system. That said, doing this is extremely non-trivial. Your first step is to go into ActivityManagerService and WindowManagerService and have a good understanding of that

[android-developers] Re: [Split the Android screen into two parts and run 2 applications simultaneously on both screen]

2009-02-14 Thread सरोज
Hello Dianne, Thanks for reply. I want to know where can i get some documentation of ActivityManagerService and WindowManagerService source code for study. Regards, Saroj K Pradhan On Sun, Feb 15, 2009 at 1:45 AM, Dianne Hackborn hack...@android.comwrote: This list is for programming with

[android-developers] Re: [Split the Android screen into two parts and run 2 applications simultaneously on both screen]

2009-02-13 Thread Faber Fedor
Are App A and App B your own apps (as opposed to say, system apps like Dialer and Maps)? I would try combining App A and App B into App C and have each (sub)App write to their own View which would be contained in another view. On Fri, Feb 13, 2009 at 8:52 AM, saroj saroj...@gmail.com wrote: