[android-porting] Re: ALSA recording audio on Donut problem

2011-07-14 Thread Diego
On 14 Lug, 01:56, Ashwin Bihari abih...@gmail.com wrote: If you are starting a port to a new board, why are you starting with such an old version of Android? You should start with Gingerbread and at the worst FroYo.. The device I'll use isn't powerful enough to run Froyo smoothly, it has just

Re: [android-porting] LatinIME container height too small

2011-07-14 Thread Joerie de Gram
Hi, Just replying to myself to provide a solution to a months-old problem (for Googlability). I'm having some trouble with the (revamped) LatinIME keyboard on 2.3 - it's height is somehow incorrect. In both portrait and landscape mode, it displays at roughly 1/5th of the screen height

[android-porting] Android sitemap.txt and custom sample applications.

2011-07-14 Thread David Escalona
Hello all, I am in the process of adding several custom samples to our ported Android SDK demonstrating new API usage. What I am doing is to include custom application samples directly in Android sources (under development/samples) so after calling the make sdk they are compiled and exported

Re: [android-porting] Re: Android partition schema

2011-07-14 Thread Hamilton Vera
Thank you very much Sebastian, the file contains sensitive data to solve our problems. []'s Hamilton Vera On Thu, Jul 14, 2011 at 5:56 AM, seba sebastian.dr...@gmail.com wrote: Hi, take a look at this file - mydroid/bootable/recovery/recovery.c BR, Seba. On 12 Lip, 17:21, Hamilton

[android-porting] Porting from rowboat android to Gumstix fire Overo Module

2011-07-14 Thread Manish Shakya
Hi , I am wondering what are the changes to be made if I have to make to port rowboat to gumstix overo module. I did following things but it didn't worked. :-( I made change in config file , board-overo.c and also added LCD driver. Compilation went fine with out errors. But when I tried to run

[android-porting] Re: audio problem with record

2011-07-14 Thread Diego
On Jul 14, 7:05 pm, amr.has nourha...@hotmail.com wrote: E/ALSALib (  746): external/alsa-lib/src/control/setup.c:565: (add_elem) Cannot obtain info for CTL elem (MIXER,'Headphone Playback Volume',0,0,0): No such file or directory E/ALSALib (  746): external/alsa-lib/src/pcm/pcm.c:2210:

[android-porting] Re: Unable to send KEY_HOME key event

2011-07-14 Thread MAY
here is my code ,just try it. input_dev-evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS); input_dev-keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH); input_dev-keybit[BIT_WORD (KEY_HOME)] = BIT_MASK (KEY_HOME); input_dev-keybit[BIT_WORD (KEY_BACK)] = BIT_MASK(KEY_BACK)|BIT_MASK(KEY_MENU); ,my