Re: Window manager for Android

2009-02-19 Thread Nasam
thanks for the answers. yeah, it is possible by defining diferent policy and changing window manager. but when changing window manager we need to consider all services given by it to other module like surface flinger or may be telephony manager, sensor listners right?. On Feb 19, 7:00 am,

Re: Media Framework Porting into Android

2009-02-19 Thread scs sek
Yes, It is instantiating 2 framework instances, can one any tell me how to disable the boot playback? Is this trying to use Opencore or some other player? I want to replace with my framework. On 2/18/09, Freepine freep...@gmail.com wrote: hmmm... I also think so:)unless instantiating two media

Re: Easy way to restarting soft keyboard service?

2009-02-19 Thread Khuong
This also works. Thanks all for the help! On Feb 18, 11:49 pm, Paranoia zheny...@gmail.com wrote: what about unchecking and checking your soft keyboard in local and text settings? On Feb 19, 2:40 am, Khuong kgh...@gmail.com wrote: Hi, I'm implementing my own soft keyboard and

Re: Media Framework Porting into Android

2009-02-19 Thread Paranoia
in audioflinger. but it should not impact your porting? On Feb 19, 9:24 pm, scs sek scs...@gmail.com wrote: Yes, It is instantiating 2 framework instances, can one any tell me how to disable the boot playback? Is this trying to use Opencore or some other player? I want to replace with my

Re: what's the best way for OEM to organize it's own resources?

2009-02-19 Thread Dianne Hackborn
2 would be best, but currently we don't support shared libraries with resources so you can't really do it. In cupcake you can define PRODUCT_PACKAGE_OVERLAYS in your product makefile to specify one or more directories that will be merged in with the base platform directories. For example:

Re: Questions about useMemoryAllocators and video frame dropping in Opencore

2009-02-19 Thread rktb
On Feb 19, 7:57 pm, waterblood guoyin.c...@gmail.com wrote: Hi All,    I have below two questions about opencore: 1. useMemoryAllocators has been defined in several places, just as AndroidSurfaceOutput and AndroidAudioInput. But cannot find any place where it be called. I just wonder

how can make my added directory be compiled when make OpenCore for PC(this is to say compile it outside of Android)

2009-02-19 Thread gtxia
Hello all. I have added many directories such as ../fileformat/xxx, ../ pvmi/recognizer/plugins/xxx with the original directory with three sub- directories and Android.mk in the OpenCore. When I build them for target, they are compiled rightly, but when I make the OpenCore for PC, they

Re: Questions about useMemoryAllocators and video frame dropping in Opencore

2009-02-19 Thread waterblood
Thanks for your reply. Is there a way to decide buffer allocator between an output port and an input port in node level? Now what i see is opencore always take the upstream output port as the supplier for the buffer shared in a connection , and use a flag PVMF_MIME_YUV420_SEMIPLANAR_YVU in

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

2009-02-19 Thread stefoid
In ActivityManagerService there is mRecentTasks and mHistory. these seem to be key to how it all wokrs. this is my understanding: mHistory is used to record the 'visual' order of activities that are revealed as the user pushes 'back'. mRecentTasks is the list of tasks. Which activity

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

2009-02-19 Thread stefoid
In ActivityManagerService there is mRecentTasks and mHistory. these seem to be key to how it all wokrs. this is my understanding: mHistory is used to record the 'visual' order of activities that are revealed as the user pushes 'back'. mRecentTasks is the list of tasks. Which activity