[android-porting] Changing Navigation Bar behavior

2012-04-29 Thread knots
Hi, I'm currently investigating the possibility to write a custom ROM for our own ICS based OEM device. This ROM should (according to UX design) contain floating back/home buttons (so they are rendered ON TOP of the activity). This custom look and feel of the NavigationBar should only apply for ou

[android-porting] Multitouch functionality in Browser / Gallery

2012-04-29 Thread Ronnyek
Hello... I've managed to get a multi-touch driver installed for our hardware, and it appears to work in applications like say OfficeViewer and MTTest.apk (to test multi touch point functionality), however I've noticed that Browser.apk doesnt seem to allow you to pinch resize/zoom... with the sa

[android-porting] Re: Touch Screen problem in Blaze

2012-04-29 Thread Ronnyek
Depends on how you intend on using your hardware... If this touchscreen is always going to be present with your version of android, you might consider just building into the kernel. If you just want to support touch screen, but want to leave it as a module... you can fire insmod from init.rc (b

[android-porting] How to reduce the memory of android system?

2012-04-29 Thread fox19111...@gmail.com
Such as the 512M memory replaced of 256M, the system remained stable, I am currently from three directions, (1) delete apk do not need to use in system\app (2) delete services do not need in the SystemServer.java (3) delete services do not need in the init.rc there are other ways to reduce the mem

[android-porting] Could not stat dex cache directory '/data/dalvik-cache': No such file or directory

2012-04-29 Thread Mamatha K
Dear All, Kindly help me in the below issue. I use sdcard to boot android on blaze. When I boot android the below issue is seen. logcat D/AndroidRuntime( 114): >> AndroidRuntime START com.android.internal.os.ZygoteInit << D/AndroidRuntime( 114): CheckJNI is OFF I/SurfaceFlinger(

[android-porting] Changing the Navigation Bar

2012-04-29 Thread knots
Hi, I'm currently investigating the possibility to write a custom ROM for our own ICS based OEM device. This ROM should (according to UX design) contain floating back/home buttons (so they are rendered ON TOP of the activity). This custom look and feel of the NavigationBar should only apply for ou

Re: [android-porting] Android GPS sensor

2012-04-29 Thread venkat k raju
Hi Kanishka, which interface your using for GPS? if your using i2c interface then get the id of that i2c bus in other driver based on that you can read those value then do other stuff. but i didn't work directly on it. but it's possible. On Tue, Apr 24, 2012 at 9:05 AM, Kanishka wrote: > H

[android-porting] Zytronic touchscreen on ICS

2012-04-29 Thread Luccio
Hi, how to calibrate zytronic usb touchscreen on ICS. Thanks for help. -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Touch Screen problem in Blaze

2012-04-29 Thread Luccio
Hi, you have to enable the touchscreen from the _deconfig file which you find in /arch/arm/configs. is your device a usb touchscreen ? Best Regards. Le mardi 24 avril 2012 07:09:01 UTC+2, Mamatha K a écrit : > > > Dear All, > I am new to android and working on Touch screen porting on

Re: [android-porting] running a script from init.rc

2012-04-29 Thread Matthias Kaehlcke
El Tue, Apr 24, 2012 at 05:46:39PM -0700 HV ha dit: >Hi All, > I'm trying to initiate a script as a service from init.rc (running ICS), >but it doesn't seem to work. Here is what I have: > >service my_sh /system/bin/sh ./system/etc/my.sh >user root >

Re: [android-porting] running a script from init.rc

2012-04-29 Thread Matthias Kaehlcke
El Wed, Apr 25, 2012 at 11:59:01AM -0700 Harish V ha dit: > Thanks for your response. I got the syntax sorted out now: >service my_sh /system/etc/my_sh.sh >class main >#user root >#group root >oneshot >With this, I do see the service kicking in. The next

[android-porting] How to update the Connectivity Manager?

2012-04-29 Thread Vikas KM
Hi All, I am trying to update the connectivity Manager saying that internet is available.. but its returning null. Any Help? -- Regards Vikas KM -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: running a script from init.rc

2012-04-29 Thread Alvin Wong
My words on this: Follow that goldfish thing. Note that all services outputs to /dev/null so you never see it in the console. (How often do you see outputs of services?) You can use logwrapper to log in logcat or use redirection in script to output to files. Good luck, Alvin Wong On 4月26日, 上午2時59

[android-porting] SDcard booting on blaze board through fastboot

2012-04-29 Thread Mamatha K
Dear All, I am facing problem in sdcard booting on blaze board. Blaze board also has nand flash. So when the given fastboot is executed its going on flash memory. But in my project we are using blaze board WITHOUT internal memory ( i.e, it has to boot from sdcard). So we need to fastboot

[android-porting] files responsible for updating signal strength on UI

2012-04-29 Thread Shivanagouda Biradar
-- Thanks & Regards.. *Shivanagouda.Biradar* Software Engineer Asmaitha Wireless Technology (P) Ltd Mob: 91-9739317331 -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] how the signal strength indicator on the UI is being updated ?

2012-04-29 Thread Shivanagouda Biradar
Hi all , can any body help , how the signal strength indicator on the UI is being updated ? and also files responsible for updating the phone state from ril layer to the framework. -- Thanks & Regards.. *shivan.* -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://grou

[android-porting] Re: running a script from init.rc

2012-04-29 Thread Alvin Wong
Hi, If you need to do some setup job (for example setting hardware, e.g. cpu scaling) you can use a script, just look into `init.goldfish.rc` and `/system/etc/init.goldfish.sh`. However I don't think you would like to show something in the console. Android has a GUI, and normally you don't want t

[android-porting] Re: Touch Screen problem in Blaze

2012-04-29 Thread zoli_k
You may need to provide an input configuration file for your device: http://source.android.com/tech/input/input-device-configuration-files.html Logcat/dumpsys should provide some debug information about the touch device/detection failure. Z On Tuesday, April 24, 2012 7:09:01 AM UTC+2, Mamatha

[android-porting] Where can i find call function and send message function?

2012-04-29 Thread nick
Hi, I would like to ask where can i find the source code of the function whick called when i try to make a call and send a message. I am undergraduate student and i am new in android development. Thanks and sorry for my english Nick -- unsubscribe: android-porting+unsubscr...@googlegroups.com

[android-porting] Re: Android ICS Building Custom Rom for ZTE devices

2012-04-29 Thread fsan
hi I believe first of all you will need to extract your boot image to get the correct kernel version for your device instead of trying to compile it for your own (i don't know if it's even possible for you as long as you do not work with ZTE I guess). Also you will need to get the libs and module

[android-porting] Re: Help Android porting to imx28

2012-04-29 Thread zoli_k
Hi, you could start by looking into the Freescale's Android support for IMX51. Since the maximum CPU clock on the MX28 is around 400Mhz and the platform doesn't provides hw graphics acceleration - having a responsive UI may be tricky. For a low-memory spec, you may need also to strip down some

[android-porting] Audio routing

2012-04-29 Thread venkat k raju
Dear all, how to route gsm channel audio to processor audio channel(mcbsp)? is it software control or hardware control? if software control can anybody suggest me thanks&Regards k.v.raju -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/andr

Re: [android-porting] SDcard booting on blaze board through fastboot

2012-04-29 Thread Pavan Savoy
Do you happen to have a change like this ? Your u-boot should be supported flashing partitions into SD-card, http://git.omapzoom.org/?p=repo/u-boot.git;a=commit;h=18b77b664e4bef00f1e86f88123ef1bffa72e47d On Thu, Apr 26, 2012 at 11:44 PM, Mamatha K wrote: > > Dear All, >I am facing proble