[android-developers] Re: What is the best phone to buy for Android Development?

2012-10-02 Thread gjs
On Tuesday, October 2, 2012 6:22:44 AM UTC+10, Lew wrote: gjs wrote: I'd suggest using the latest Google Android device, currently that is the (Samsung) Galaxy Nexus, but rumors suggest it is to be updated very soon (?) Main reason is that the Google phones allow you to see your own debug message

[android-developers] Re: What is the best phone to buy for Android Development?

2012-10-01 Thread gjs
Hi, I'd suggest using the latest Google Android device, currently that is the (Samsung) Galaxy Nexus, but rumors suggest it is to be updated very soon (?) Main reason is that the Google phones allow you to see your own debug message on the console pretty easily, where as most other phones have

[android-developers] Re: Anyone here deal with GPS bearing data or sensor orientation data?

2012-09-18 Thread gjs
Hi, GPS bearing will only become accurate when the device is moving not when it is stationary. Also it looks like you have not registered your orientation sensor listener with the Sensor Manager, see onPause() on Resume() in

[android-developers] Re: Lunar Lander Example - Thread Safety

2012-09-17 Thread gjs
Hi, Are the threads using synchronized blocks of code or methods when setting / getting the common variable, are they using volatile for the boolean ? If not thread safety is questionable. It is also a question of visibility as well as safety, particularly when running on multi core cpu

[android-developers] Re: Blueteeth

2012-09-14 Thread gjs
Hi, Yes 2 or 3 sometime 4 just once 5 ! Regards On Friday, September 14, 2012 7:30:37 AM UTC+10, bob wrote: So, has anyone ever gotten an Android Bluetooth server working that can handle multiple clients simultaneously? I looked at some old posts, and it seems this was a headache for

[android-developers] Re: Blueteeth

2012-09-14 Thread gjs
Hi, Yes with one of these as the Android BT server. Regards On Friday, September 14, 2012 6:00:54 PM UTC+10, gjs wrote: Hi, Yes 2 or 3 sometime 4 just once 5 ! Regards On Friday, September 14, 2012 7:30:37 AM UTC+10, bob wrote: So, has anyone ever gotten an Android Bluetooth server

[android-developers] Re: SpeedAlert App

2012-08-24 Thread gjs
Hi, Put GPS receiver in an Android Service, use Notifications (or audio/TTS) when speed limit exceeded to inform user. Regards On Friday, August 24, 2012 2:54:37 PM UTC+10, Deepa M wrote: Dear All, How to run the speedometer in background to get update from gps receiver... i have done in

[android-developers] Re: Bluetooth client server

2012-08-24 Thread gjs
Hi, See the BlueToothChat sample app in the Android sdk. Regards On Thursday, August 23, 2012 7:05:46 PM UTC+10, Mulia Dhamma wrote: Hello all masters,. do you have the code for bluetooth client server ? example..i have 2 android phone..and when the 1 android phone sending a string then

[android-developers] Re: Handler object is taking long time to send message to UIThread

2012-08-23 Thread gjs
Hi Try recThread.start(); not recThread.run(); otherwise you are not executing a new thread... Regards On Thursday, August 23, 2012 2:04:39 PM UTC+10, Argon wrote: Its the handler in the recording thread. It should change the button text before thread starts audio recording but it doesnt

Re: [android-developers] Syncing Database

2012-08-22 Thread gjs
Hi, Simply create a hash of each table row then compare the hash values between the two phones, if the hash is different or missing one or both of the two rows needs updating. Insert or delete missing rows is easy - maybe, but trouble is which row(s) / column(s) to update (?) maybe you can

[android-developers] Re: How do I keep corporate app (not in any store) updated?

2012-08-17 Thread gjs
Hi, Do what you did for a desktop app - have your app periodically check some server for updates. regards On Friday, August 17, 2012 6:56:30 AM UTC+10, Jon Helms wrote: I have done some searching and haven't found anything, so I must be searching wrong, but since I didn't find anything I'm

[android-developers] Re: how to achieve the accuracy of google navigation

2012-08-04 Thread gjs
Hi, Probably not what you are after, but you could also use an external bluetooth GPS device, some of these devices provide 10hz output. Regards On Thursday, August 2, 2012 12:18:33 AM UTC+10, bushido wrote: Hi all, I'm writing an application for android for which I need good position

Re: [android-developers] Re: creating a server app on the Android

2012-08-02 Thread gjs
Hi, This depends on your network provider, some/most? NAT / FIREWALL / BLOCK the IP address so you can't connect to the device over the cellular network. One of the two provider I use does not nat / firewall / block the IP address so I can connect ok. But as others have said you typically do

Re: [android-developers] Fragments Bitmap Recycling + a bunch of bitmap oriented questions.

2012-07-31 Thread gjs
Hi, I saw recently I could take out an insurance policy that had unlimited cover amount, I guess the premium has unlimited cost as well ;-) Regards On Tuesday, July 31, 2012 10:51:11 AM UTC+10, Dianne Hackborn wrote: Btw, I love how more and more I see people dragging out this quote every

[android-developers] Re: Is it possible to reduce the variability of camera shutter lag time?

2012-07-31 Thread gjs
. Regards, the other gjs. On Wednesday, August 1, 2012 12:41:27 AM UTC+10, greg wrote: Thanks for the suggestions. Based on them I tried disabling all the camera auto parameters. There is still a range of about 0.2 s in the shutter lag time. In this application (and perhaps there are others), I'm

[android-developers] Re: Is it possible to reduce the variability of camera shutter lag time?

2012-07-30 Thread gjs
Hi, Set other camera parameter values to non-auto settings eg: set a specific white balance such as daylight, set flash to off etc. Other than that ensure there is no other non essential app's / services running at the same time examine your own app to minimise or eliminate any garbage

[android-developers] Re: Byte [] image

2012-07-30 Thread gjs
Hi, YUV conversion is only required for camera preview images not camera photos. Regards On Jul 30, 12:59 pm, Jim Graham spooky1...@gmail.com wrote: On Mon, Jul 30, 2012 at 07:12:52AM -0700, Numair Qadir wrote: I'm working on an app, in which i convert the byte[] image to bitmap, but it

[android-developers] Re: sensor event and augmented reality

2012-07-30 Thread gjs
Hi, Use a frame layout. Regards On Jul 27, 9:19 pm, Nicholas Austin nicholas.aus...@uk.qioptiq.com wrote: The bit I'm struggling with is displaying anything over a camera preview. What is the best practice to display a graphics (that will change depending on sensor readings) over a camera

[android-developers] Re: URGENT : HELP NEEDED ! Loading Bitmap Image into Custom ListView using AsyncTask

2012-07-23 Thread gjs
Hi, Do you eventually see the bitmap in imageView, after it is loaded from the network ? See the definitive example from Romain Guy - http://code.google.com/p/shelves/ And discussed here - http://www.curious-creature.org/2009/03/04/speed-up-your-android-ui/ Also no need to say a post is

[android-developers] Re: GPS in android application

2012-07-23 Thread gjs
Hi, You need to code the bluetooth connection and I/O to the external GPS device yourself, you will then get access to the NMEA string from the device. Search the internet and you should be able to find examples where a mock Location provider is connected to a BT GPS device. Regards On

Re: [android-developers] Re: Audio Stream buffers within 8 secs on Emulator but takes almost 50 secs to buffer on a Phone

2012-07-18 Thread gjs
Hi, And how long does it take on HTC One using cell phone network connection ? Regards On Wednesday, July 18, 2012 3:52:47 PM UTC+10, Zoheb Rahman wrote: Went through the LogCat in verbose ... can't find anything !!! somebody ! anybody !! HELP !!! -- You received this message because

[android-developers] Re: Maximum number of thread created by an Android activity

2012-07-18 Thread gjs
Hi, Just code a test activity that creates an increasing number of Threads and you will get your own answer. Regards On Wednesday, July 18, 2012 7:42:41 AM UTC+10, michael s wrote: Hi, Is there a limit for the number of thread created by an Android activity runs on a phone? If yes, how

[android-developers] Re: Does anyone use Task API before?

2012-07-16 Thread gjs
Hi, Read the TOS - https://developers.google.com/google-apps/tasks/terms Regards On Jul 16, 9:54 pm, Michael Leung michaelchi...@gmail.com wrote: Hi all,   Does anyone use Task API(https://developers.google.com/google-apps/tasks/oauth-and-tasks-on-an...) before? Any legal requirements to

[android-developers] Re: Eclipse Android Virtual Device on the retina MacBook Pro

2012-07-12 Thread gjs
Hi, That is a good problem to have, looking forward to it myself soon, I'd suggest debugging on a real device instead of the emulator. If you also have Parallels or similar and run a Windows VM do you get the same issue using Eclipse under Windows? Perhaps you could try to using a different

[android-developers] Re: Bluetooth Connection failing in android OS 2.3 and above

2012-07-11 Thread gjs
Hi, Try the bluetooth chat sample app see if that works ok. Regards On Jul 3, 10:43 pm, Jonathan Lim jonathan...@innovatechnology.com.sg wrote: Hi, i have am developing an application which connects to Bluetooth and it works perfectly in android OS 2.1 and 2.2 however when i tested with OS

[android-developers] Re: fail to save camera snapped Picture on device

2012-07-11 Thread gjs
Hi, Post the code you are using. Regards On Jul 11, 5:49 am, hytham ALOBYDI haiw...@gmail.com wrote: Hi all; i am writing an android application that take pictures using the camera and upload to the server. I created a costume folder so that all the snapped pic will be saved to, the issue

[android-developers] Re: Android Barcode Scanner Not reading some barcodes.

2012-07-11 Thread gjs
Hi, Perhaps try another device. regards On Wednesday, July 11, 2012 9:01:01 PM UTC+10, Reji Joseph wrote: I am working on a Project which uses the Barcode Scanner for redeem points. I have tried Zxing,QR Droid, Red Laser,Scan Life,Shop Savy etc usig HTC EVO 3D. None of them read all

[android-developers] Re: Android File Transfer no longer working with Galaxy Nexus after 4.0.4 upgrade

2012-07-10 Thread gjs
Hi, Yes I have exact same issue. It would be good if Google published the source code to the File Transfer app for OSX. You can still transfer files from within Eclipse ok using ddms. Or you can connect to a Windows machine and transfer files. (I also wrote a mtp transfer app in c# for windows

[android-developers] Re: Bluetooth chat bug?

2012-07-07 Thread gjs
Hi, And by that logic device might be null as well... Maybe check the source code. Regards On Jul 7, 5:12 am, bob b...@coolfone.comze.com wrote: I'm looking at the Bluetooth chat example:             // When discovery finds a device             if

[android-developers] Re: OutOfMemoryException

2012-07-07 Thread gjs
Hi, It is unlikely you would need all 1000 loaded at the same time, try a different approach perhaps load on demand as needed. Regards On Jul 7, 2:51 am, RichardC richard.crit...@googlemail.com wrote: How large are your images (not file size, but width*hight*bits-per-pixel) images are

[android-developers] Re: How to make own map for application on android

2012-07-01 Thread gjs
Hi, Put an overlay on top of your google map with the details you require. Regards On Jun 29, 6:21 am, Cher Yots jigga.c...@gmail.com wrote: Now I'm developing an application Map of University on Android. I use google map api The problem is that I found on the Google Map does not show the

[android-developers] Re: Testing in-app billing

2012-06-28 Thread gjs
Hi, If you read the docs it says you have to pay but you can also issue a refund apparently. Regards On Jun 28, 8:47 pm, adrian del campo djsatanopho...@gmail.com wrote: Hi, I'm creating a simple library to manage in-app billing from our apps. I have tested everything with the static test

[android-developers] Re: Much time taken in data read from socket

2012-06-27 Thread gjs
Hi, Read more than 1 byte at a time, use an array buffer. Regards On Jun 25, 6:06 pm, Azmat Alikhan alikhan.az...@gmail.com wrote: I'm using sockets for data transfer from one android phone and PC, it is taking 15 seconds to read about 1 Mb of data. I want to improve its performance. Could

[android-developers] Re: listenUsingInsecureRfcommWithServiceRecord

2012-06-26 Thread gjs
Hi, If you dig deeply I think you will find it was present in API's before Level 10 but was only available unsupported/privately by using java reflection. See in here for an example

[android-developers] Re: How do I save a complete webpage displayed in Android's WebView?

2012-06-20 Thread gjs
/81651cbd13bc6faa?lnk=gstq=gjs+yahoo#81651cbd13bc6faa You could save the page as an image also the url to view the page online again later. Regards On Jun 21, 11:32 am, imsproject ims ims.proje...@gmail.com wrote: Hi Nobu Games, Thanks for your reply.  I will try using javascript as you mentioned

[android-developers] Re: trace mobile location through phone number

2012-06-15 Thread gjs
Hi, That capability is usually reserved for telco's government agencies with warrants using cell phone tower triangulation. Regards On Jun 15, 10:34 pm, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Fri, Jun 15, 2012 at 4:59 PM, Raghav Sood raghavs...@gmail.com wrote: This has

[android-developers] Re: Find path between 2 pairs of lat and long

2012-06-07 Thread gjs
/javascript/directions would be useful. Regards On Jun 7, 12:38 am, Kristopher Micinski krismicin...@gmail.com wrote: On Wed, Jun 6, 2012 at 3:15 AM, gjs garyjamessi...@gmail.com wrote: Hi, The path is just a straight line between the two points. Perhaps you need a better question. Regards

[android-developers] Re: Running camera preview while recording video at the same time

2012-06-07 Thread gjs
Hi, Normally camera preview *IS* present during video recording, read the video section of this carefully - http://developer.android.com/guide/topics/media/camera.html Regards On Jun 6, 8:20 pm, DeveloperbyChoice tahasyed...@gmail.com wrote: I am still loking for the solution ? any solution

[android-developers] Re: Find path between 2 pairs of lat and long

2012-06-06 Thread gjs
Hi, The path is just a straight line between the two points. Perhaps you need a better question. Regards On Jun 4, 9:45 pm, Mini agrawal itsmin...@gmail.com wrote: HI, I have a 2 sets of latitude and longitude pairs. I want to find path between these 2 pairs of lat and long and then show

[android-developers] Re: Getting GPS values without LocationManager's onLocationChanged

2012-06-04 Thread gjs
Hi, See also http://developer.android.com/reference/android/location/GpsStatus.NmeaListener.html Regards On Jun 3, 10:28 pm, Mark Murphy mmur...@commonsware.com wrote: GPS fixes will arrive at a rate determined by the GPS hardware and the environment. You cannot control this. Either adjust

[android-developers] Re: Multishots in android

2012-05-23 Thread gjs
Hi, Depends on the device, Galaxy Nexus can do two in just under a second, also new Galaxy S3 is said to support this as well. Other option is to capture camera preview frames which can be done between 10 to 15 images per second. Also try reducing the photo capture size, this helps reduce time

[android-developers] Re: Bluetooth Peer to Peer network in Android..

2012-05-22 Thread gjs
Hi, I have had 3 and 4 ptp bt connections on real android devices ( all different ) once 5, but I found getting reliable connections beyond 3 is usually quite difficult. Configuration was 1 server multiple clients, I think you may do better if you daisy chain connections. Regards On May 22,

[android-developers] Re: Connecting to two bluetooth devices alternatively

2012-05-16 Thread gjs
Hi What you mean by - My objective is to read data from a bluetooth device alternatively. I was successful in storing the address of the devices selected. This is how I am trying to connect to the devices alternatively: - Specifically what do you mean by 'read data from a bluetooth device

[android-developers] Re: Connecting to two bluetooth devices alternatively

2012-05-16 Thread gjs
is established.  I am not able to close the Bluetooth Socket and switch devices properly when I try to establish the above mentioned sequence. It seems to get stuck in an infinite loop. Thanks, Sai On Wed, May 16, 2012 at 2:24 AM, gjs garyjamessi...@gmail.com wrote: Hi What you

[android-developers] Re: Long running Android service is getting recreated over and over

2012-05-10 Thread gjs
Hi, And so do we, I've only had to add start foreground since ICS, before that the service ran OK for days or weeks without being killed. That GPS uses a lot of battery is a total myth IMHO. With screen off can log for over 8 hours more on some devices. I also support sub seconds GPS logging from

[android-developers] Re: which android phone has Environment sensors hardware?

2012-05-10 Thread gjs
Hi, Only device I have had that measures temperature was the original t- mobile G1 even then what was measuring was the battery temp not ambient. If you want to measure ambient, I'd suggest looking at the bluetooth Sensaris devices eg http://www.sensaris.com/products/senspod/ Regards On May

[android-developers] Re: IP Camera Live Streaming

2012-05-06 Thread gjs
Hi, Some / most (?) IP webcams come with an SDK, try reading that. For example http://www.axis.com/products/dev_sdk/ Regards On May 7, 1:00 am, Maha Abdel rahman mahaelag...@gmail.com wrote: I have a question is any IP camera can be viewed controlled from android application, or there are

[android-developers] Re: Bluetooth devices is pairing but not connecting

2012-04-30 Thread gjs
Hi, Build bluetooth chat demo app from sdk try connecting with that. Regards On Apr 30, 4:43 pm, hüseyin toplu hsy...@gmail.com wrote: i found my problem problem  have server code   tmp = mAdapter.listenUsingRfcommWithServiceRecord(NAME_SECURE,                     MY_UUID_SECURE);          

[android-developers] Re: onPreviewFrame returning wrong information?

2012-04-26 Thread gjs
Hi, Read this post it might help. http://groups.google.com/group/android-developers/browse_thread/thread/65796050ccf3e022/067df0e92c366937?lnk=gstq=compressToJpeg#067df0e92c366937 or search for compressToJpeg in this forum. regards On Apr 26, 3:11 pm, Taylor Niver tniver1...@gmail.com wrote:

[android-developers] Re: Any way to change one color to another on a bitmap?

2012-03-04 Thread gjs
Hi, Did you try the array version of setPixels() rather than the single pixel method ? Array version is much faster. Regards On Mar 3, 6:56 am, darrinps darri...@gmail.com wrote: I have a bitmap and want to be able to change all black pixels to all blue. I know you can do this via

[android-developers] Re: Hi to every body

2012-03-04 Thread gjs
Hi, See the google zxing project. Regards On Mar 2, 6:12 pm, suraj nittala surajnitt...@gmail.com wrote: Hi all, This is suraj I am planning to do develop an application fro reading the qr code for that i have searched in the net but I haven't find any thing if anybody have the source code

[android-developers] Re: How to get around restriction on Bluetooth major device class of 0?

2012-02-25 Thread gjs
Hi Find a phone that does connect to the bt device, note down its bt address. Connect using the bt address on the phone that skips class 0. I find reading logs is not always reliable. Regards On Feb 25, 4:40 pm, DonFrench dcfre...@gmail.com wrote: I found a workaround:  

[android-developers] Re: camera app FC/no FC dep. on startup method

2012-02-25 Thread gjs
Hi, Add code / try catch block to check if camera connects OK. If not indicate to user camera is busy, exit and restart app. Regards On Feb 25, 10:33 am, Jim Graham spooky1...@gmail.com wrote: One more detail On Fri, Feb 24, 2012 at 05:12:47PM -0600, Jim Graham wrote: What I'm seeing is

[android-developers] Re: requestLocationUpdates ignore minTime parameter?

2012-02-25 Thread gjs
Hi, Ordinary GPS devices only provide updates at 1 second intervals Regards On Feb 24, 2:23 pm, StarTraX gpsanima...@gmail.com wrote: But doesn't that beg the question what the parameter is there for at all? My testing indicates that the value is entirely ignored and always uses around 1000

[android-developers] Re: How to read EXIF Data from Image File on Android?

2012-02-25 Thread gjs
Hi Use the android exif class in the sdk Regards On Feb 25, 3:17 am, Jaison Brooks jaisonbro...@gmail.com wrote: So I'm trying to develop a application of my own that can take any image and read its EXIF data and use it to do something. Display it or using a intent send data to another

[android-developers] Re: Bluetooth (RFComm) and broken phones

2012-02-22 Thread gjs
Hi, Try turning BT off on, then see if it connects ok. Regards On Feb 23, 9:50 am, eehouse ho...@gmail.com wrote: I'm modifying a board game app to allow play via Bluetooth.  I'm testing on a stack of devices from Samsung, Kyocera, Motorola and HTC.  Consistently the HTC phone

[android-developers] Re: Force close while opening an imageView from a bitmap

2012-02-13 Thread gjs
Hi, Just fyi - jpg does not support alpha, png does. Regards On Feb 14, 8:18 am, Jim Graham spooky1...@gmail.com wrote: On Mon, Feb 13, 2012 at 09:52:03PM +0100, Daniele Segato wrote: On 02/13/2012 05:51 AM, Jim Graham wrote: why don't you just go into debug mode and see where the bmp

[android-developers] Re: What's a solid accuracy measurement from LocationManager?

2012-02-13 Thread gjs
Hi, 30% of what ?, percentage seem meaningless to me. Try examining http://developer.android.com/reference/android/location/Location.html#getAccuracy() And yes you can often get GPS fix ok on Android devices indoors near to window, helps if there is good sunny weather outside. Regards On Feb

[android-developers] Re: How to get 5mtr range of accuracy in gps?

2012-02-13 Thread gjs
Hi, Use a high quality GPS receiver eg via bluetooth. Alternatively would might try standing still averaging several reading. Best done is clear sky sunny conditions. Regards On Feb 14, 4:31 am, Dhaval Varia dhavalkva...@gmail.com wrote: I m giving address of location... How can i have best

[android-developers] Re: What's a solid accuracy measurement from LocationManager?

2012-02-13 Thread gjs
. Chris Stewart Founder, Locomo Labshttp://locomolabs.com On Feb 13, 2012 8:53 PM, gjs garyjamessi...@gmail.com wrote: Hi, 30% of what ?, percentage seem meaningless to me. Try examining http://developer.android.com/reference/android/location/Location.html...() And yes you can

[android-developers] Re: Is there a way to access/edit the camera preview image?

2012-02-09 Thread gjs
Hi, Here is an older post that might help you along a little with your project - http://groups.google.com/group/android-developers/browse_thread/thread/65796050ccf3e022/b8296e4c283b24ff Regards On Feb 10, 3:12 pm, Jim Graham spooky1...@gmail.com wrote: On Thu, Feb 09, 2012 at 02:02:42PM

[android-developers] Re: how can access android phone (sdcard) on my computer browser via wifi ?

2012-02-07 Thread gjs
Hi, Sure write an app with its own http server. http://developer.android.com/reference/java/net/ServerSocket.html Regards On Jan 31, 2:01 pm, ltvie ltvi...@gmail.com wrote: Hi everyone...!! I want to know,,how can access android phone (sdcard) on my computer browser via wifi ? for

[android-developers] Re: Bluetooth insecurerfcomm automated pairing request on ICS

2012-02-07 Thread gjs
Hi, Just ignore the pairing, or pair it anyway it should only happen once... Regards On Feb 8, 3:27 am, rapgaroo hcc...@gmail.com wrote: I own a Nexus S and it's currently running ICS 4.0.3 (OTA from T- Mobile). I have my own application which does Bluetooth connection stuff using Insecure

[android-developers] Re: GPS - SMS - Mock Location

2012-02-07 Thread gjs
Hi, Someone might help if you post the log with FC details. Regards On Feb 7, 7:58 am, Hohorlan B jorlan.balbuen...@gmail.com wrote: I have this code for my project. (Not mine, but I revised it so it will suit my needs.) http://pastebin.com/Tn4guLNR My Project is about a specific GPS

[android-developers] Re: I've been making games for a while now but how do I make them successful?

2012-02-07 Thread gjs
Hi, One suggestion is not to mention that the game is still in development even if it is, some people may think it is not complete or has bugs etc and they are just being used to test your game. Keep trying to make a great game with great visuals. Regards On Feb 7, 5:04 pm, Pedro Gabriel

[android-developers] Re: Image comparison problem: getPixel() in android and getRGB() in JDK return different values for the same image

2012-02-03 Thread gjs
Hi, Also maybe try .png format if possible. Regards On Feb 4, 8:21 am, Romain Guy romain...@android.com wrote: First make sure that both return values in the same format (Android returns ARGB not RGBA.) Also, f I remember correctly, Java2D can apply color profiles when loading a bitmap. On

[android-developers] Re: Lunch and Accessible only to a Specific location-Within State.

2012-01-29 Thread gjs
Hi, You could use GPS or Network location to determine if the device is within your state and act accordingly. Regards On Jan 29, 6:39 pm, Kristopher Micinski krismicin...@gmail.com wrote: At the same time.. Once somebody gets your apk, there's no way to stop them from installing it outside

[android-developers] Re: Lunch and Accessible only to a Specific location-Within State.

2012-01-29 Thread gjs
Hi, In computing anything can be faked... Regards On Jan 30, 12:27 pm, Kristopher Micinski krismicin...@gmail.com wrote: This can be faked.. If you use GPS, it's easy, if you use the telephone network, harder, but still doable. kris On Sun, Jan 29, 2012 at 8:25 PM, gjs garyjamessi

[android-developers] Re: How to Increase frame rate (fps) from onPreviewFrame??

2012-01-19 Thread gjs
Hi, You could make minor? improvements by doing the standard optimizations of moving various static queries and variable initilizations to outside of the onPreview method. For example, most of this code does not need to be executed for every onPreview method call - Camera.Parameters parameters

[android-developers] Re: What percentage of users lack the ability to install from outside the Droid marketplace ?

2012-01-02 Thread gjs
Hi, I think you will find that they relaxed that policy a while ago, at least for some devices eg the Atrix. Regards On Jan 3, 2:14 pm, John Coryat cor...@gmail.com wrote: You can count every ATT customer as one who won't be able to get your app. ATT cripples their Android devices by

[android-developers] Re: latitude / longitude / altitude / direction of photo/image-taken in metadata of android-camera ?

2012-01-01 Thread gjs
Hi, Sure, try my app http://market.android.com/details?id=com.imageotag Regards On Dec 29 2011, 11:48 pm, henke54 henk...@gmail.com wrote: Can it be possible that a Android camera can 'capture' the correct 4 'dimensions' : latitude / longitude / altitude / direction of photo/ image-taken ,

[android-developers] Re: ADB driver...

2011-12-12 Thread gjs
hi, from xda forum - 1st December 2011, 12:57 AM On Windows 7 you go to device manager and select Updated driver Browse my computer... Let me select... Show all Have disk And then browse to the inf file in the android-sdk-windows\extras \google\usb_driver folder. It's a pain but it works

[android-developers] Re: Help needed with GPS/TTS app

2011-12-08 Thread gjs
Hi, You will probably want to use a Service ( with a PARTIAL WAKE LOCK ) rather than an Activity assuming you are not already. GPS will keep going ok, not sure about TTS in a Service. Regards On Dec 8, 8:41 am, gotok ken0g...@gmail.com wrote: First of all, I am very much a beginner working on

[android-developers] Re: simple task of getting frames from a video file

2011-12-07 Thread gjs
Hi, Google search ffmpeg and android Regards On Dec 7, 8:12 pm, visual depth depth.vis...@gmail.com wrote: I used xuggle library which works fine in native java code and get frames from a video and store in {jpg,png,bmp} I couldn't find help of getting this task done in Android . I want to

[android-developers] Re: database connectivity on real device

2011-12-01 Thread gjs
Hi, Create you database in code, when app is first run. Load data from assets. If there is a lot of data load it from internet. Regards On Dec 2, 2:07 pm, Narendra Singh Rathore nsr.curi...@gmail.com wrote: Hi again, my problem solved by storing my database in sdcard, but even now I have to

[android-developers] Re: how do i know if i am on road between two points in android

2011-12-01 Thread gjs
Hi, This might help http://www.movable-type.co.uk/scripts/latlong.html Regards On Dec 2, 12:10 pm, TreKing treking...@gmail.com wrote: On Thu, Dec 1, 2011 at 5:49 AM, PaulH paul.harti...@gmail.com wrote: how can I check if my current location is in the zone if I have only the start point

[android-developers] Re: Android - Beagleboard - Input via serial port

2011-12-01 Thread gjs
Hi, Check this out http://slickdevlabs.com/slick-usb-2-serial-library/ Regards On Dec 2, 9:57 am, Dalton Cézane daltoncez...@gmail.com wrote: Hi. I would like to know what you recomend for reading data from serial port (or usb) in a beagleboard. I saw that android does not have native

[android-developers] Re: Need A web xml parsing code... Urgently please

2011-12-01 Thread gjs
Hi, When I run that code, it never returns from - iHaveTheSkillToDoMyOwnWork() :-) Regards On Dec 2, 7:51 am, Streets Of Boston flyingdutc...@gmail.com wrote: Sorry Treking, But the example you provided won't work. He asked for Urgent*ly* ... slight typo on your part, can happen to the

[android-developers] Re: getting this error The apk must be signed with the same certificates as the previous version.

2011-11-28 Thread gjs
Hi, You *must* use Java 1.6 to sign, java 1.7 does not work jarsigner default algorithm has changed, as somebody already explained. Regards On Nov 28, 11:05 pm, Mariux mariu...@gmail.com wrote: Tried with Chrome, Firefox and IE. Same issue for all of them. In fact, this can't be a

[android-developers] Re: Notification sound not played to end

2011-11-28 Thread gjs
Hi, I play sound asynchronously (in a separate thread). The first thing I do is query the duration of the sound clip ie how many miliseconds, then I play the sound clip keep the thread running for at least the duration of the clip. That way the sound is not 'cut off' before it has finished

[android-developers] Re: Barcode reader app in android

2011-11-28 Thread gjs
Hi, Goole zxing Regards On Nov 26, 6:02 pm, Ali Rangwala aliwor...@gmail.com wrote: Dear All, we have been trying to build a Barcode reader app in Android.. we got a SDK/open source code of Red Laser however it doesnt seem to work well. If any of you have developed similar app and would

[android-developers] Re: Android with cloud computing

2011-11-28 Thread gjs
Hi, Google App Engine. regards On Nov 28, 3:46 pm, Akash agarwal.1...@gmail.com wrote: Hi, I am a developer of android and much familiar with Android SDK. I am very much eager to learn Android with cloud computing but can't find any relevant stuff anywhere. I would like someone to suggest

[android-developers] Re: createRfcommSocket

2011-11-21 Thread gjs
Hi, I find the Galaxy S2 quite problematic with bluetooth as well, often needing to stop start bluetooth in order to get it to device to connect. I found it is more reliable using the undocumented method you mentioned as well as using the insecure versions of the same method calls and that this

[android-developers] Re: Android SSLException - Google servers

2011-11-21 Thread gjs
Hi, Did you change all url's from http: to https: ? Also this might help - http://exampledepot.com/egs/javax.net.ssl/TrustAll.html Regards On Nov 18, 11:37 pm, Mike Mike fxmik...@gmail.com wrote: I need to develop an application that bring data from google.com/ contacts. I have manage to do

[android-developers] Re: Fw: Friends, I need help

2011-11-21 Thread gjs
Hi, Looks ok, you need to wait a few minutes before the emulator starts, also look in eclipse log for any errors. Regards On Nov 21, 9:53 pm, francisco.alexan...@gmail.com wrote: Speak Lord, in peace? Friends, I need help, what version we are using Eclipse with Android? I'm new and I'm

[android-developers] Re: Testing App Battery Usage

2011-11-21 Thread gjs
Hi, No I don't think so. You can run adb over tcp/ip wifi but that will effect battery usage as well. Maybe just log to file on the device. Regards On Nov 18, 6:02 am, Ika Balzam i...@net-comet.com wrote: Hey Guys, We want to have a live debugger (mobile connected to the computer by usb)

[android-developers] Re: android with radio wave

2011-11-21 Thread gjs
Hi, Which radio ? Cell, Wifi, bluetooth, FM, NFC, Ant etc ? Regards On Nov 20, 9:08 am, boniyustin boniyus...@gmail.com wrote: Hi , I'm android developer,, very need help. anyone know how android receive radio wave.. any idea for developer.? big thanks :) -- You received this message

[android-developers] Re: Please Help with GPS Provider Switch

2011-11-21 Thread gjs
Hi, Yes I understand what you are attempting, I was just suggesting doing all three at the same time in parallel , that way you'd have a results in 30 seconds or less not have to wait for up 90 seconds. And no I don't know why your network provider is no working, try adding some debug statement

[android-developers] Re: Please Help with GPS Provider Switch

2011-11-20 Thread gjs
Hi, What's the problem if you start all 3 at once ? Then stop them once they are not needed. I use GPS NETWORK providers at the same time they work ok. Regards On Nov 21, 5:55 am, Tommy Hartz droi...@gmail.com wrote: The timer is there to only allow it to check for 30 seconds. Once the 30

[android-developers] Re: Cheating the Rating, please google stop this.

2011-11-17 Thread gjs
Hi I think you'll find it is an old business. Regards On Nov 17, 11:49 pm, sblantipodi perini.dav...@dpsoftware.org wrote: imho this could be a new business. On Nov 17, 8:56 am, Lew lewbl...@gmail.com wrote: On Wednesday, November 16, 2011 11:39:56 AM UTC-8, sblantipodi wrote:

[android-developers] Re: Problems when signing APKs with Java 7.

2011-11-17 Thread gjs
Hi, Yes I can confirm the same problems happen with jarsigner jdk 1.7 and Windows 7, must use jdk 1.6 or prior. Regards On Nov 17, 8:37 pm, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Thu, Nov 17, 2011 at 5:37 PM, BoD bodlu...@gmail.com wrote: Thanks for your answer. I guess I was

[android-developers] Re: Remove Log Statements

2011-11-17 Thread gjs
Hi, If you are developing with Eclipse just do a global Search press Replace button, changing Log.X with // Log.X where X is your debug level Regards On Nov 16, 10:07 pm, Android Developer c2dmdevelo...@gmail.com wrote: Hi All, Any ideas, I dont have any luck to get this. Thanks

[android-developers] Re: android 2.3 pauses my application

2011-11-15 Thread gjs
Hi, Is TimerTask running from the Activity or an (Android) Service ? Sound like you need to use a Service with a Wake Lock to keep cpu running after you press Power button. Regards On Nov 15, 8:34 pm, kazuya iadcialim.g...@gmail.com wrote: I have an application that takes pictures and upload

[android-developers] Re: Android Development Environment?

2011-11-14 Thread gjs
eclipse + mac On Nov 15, 3:17 am, André Cipriani Bandarra andre...@gmail.com wrote: +1 for Eclipse + Linux On Mon, Nov 14, 2011 at 2:11 PM, Latimerius l4t1m3r...@googlemail.comwrote: On Fri, Nov 11, 2011 at 10:56 PM, Jones stdjo...@gmail.com wrote: What development environments are

[android-developers] Re: Hasmukh Gosai

2011-11-14 Thread gjs
You ask google On Nov 15, 3:04 am, Bishesh Manandhar coldda...@gmail.com wrote: HAHA, What kind of weird question is this. On Mon, Nov 14, 2011 at 7:50 AM, Jim Graham spooky1...@gmail.com wrote: On Sat, Nov 12, 2011 at 05:17:22PM +0530, Hasmukh Gosai wrote: How to get list of all

[android-developers] Re: Android 3.1 and USB to Serial

2011-11-14 Thread gjs
Hi, Have a look at the adk. http://developer.android.com/guide/topics/usb/adk.html Regards On Nov 14, 11:18 am, Erik pdxvwe...@gmail.com wrote: It's possible that I'm an idiot, but I can't seem to find a tutorial on USB communication that actually tells me something useful. Can someone

[android-developers] Re: boss is complaining

2011-11-14 Thread gjs
Hi, Turn device on side - landscape. Get a higher res device pinch to zoom What TreKing said Regards On Nov 15, 4:21 pm, Michael Leung michaelchi...@gmail.com wrote: Are you writing an app or a webpage? On Tue, Nov 15, 2011 at 2:28 PM, Christopher Van Kirk

[android-developers] Re: Use the Gyroscope to improve the orientation

2011-11-11 Thread gjs
have to replace the accelerometer with the magnetic sensor. As mentioned by gjs, it cannot help you overcome magnetic interference. But it should be possible to get a much smoother and faster response by using magnetic sensor and gyro in combination than by using the magnetic sensor alone. I

[android-developers] Re: Customize Android Source Code to run multiple Application on same Screen.

2011-11-11 Thread gjs
Hi, In this thread the Op mentioned he had the hardware. If the Op is something of a wizard he should be able to setup a cluster of 2 or more complete android h/w s/w instances, intercept the video from each and output to a single screen eg using

[android-developers] Re: Remote Service dose not start

2011-11-10 Thread gjs
day On Nov 11, 2:23 am, Goutom goutom.sust@gmail.com wrote: Surely no one can help me ! this a fucking problem of android. On Wed, Nov 9, 2011 at 10:15 PM, gjs garyjamessi...@gmail.com wrote: Hi, Suggest you add several log debug statements in the activity service and examine

<    1   2   3   4   5   6   7   >