[android-beginners] Camera class doesn't save exif data?

2009-02-05 Thread George
, but the photos my app take do not contain any. Is there some code i'm missing to get the camera to do this, or is it not supported? Thanks, George --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group

[android-beginners] Re: Camera class doesn't save exif data?

2009-02-05 Thread George
On further inspection, should i be using MediaStore.Images.ImageColumns.orientation / lat / long etc to set exif data? Or this internal to android it's self? Thanks, George On Feb 5, 5:49 pm, George she...@gmail.com wrote: Hello, I've written an app that takes a photo using the Camera class

[android-beginners] Re: Camera class doesn't save exif data?

2009-02-06 Thread George
Thanks for your reply. I've had a poke around the reference docs and can't seem to find anything regarding an EXIF helper class, any pointers? Thanks, George On Feb 6, 3:28 am, Dave Sparks davidspa...@android.com wrote: If you wrote your own app, you need to use the location services to get

[android-beginners] Re: Camera class doesn't save exif data?

2009-02-06 Thread George
, George public void onPictureTaken(byte[] data, Camera c) { Bitmap bm = BitmapFactory.decodeByteArray(data, 0, data.length); // Save the name and description in a map. Key is the content // provider's

[android-beginners] Re: Camera class doesn't save exif data?

2009-02-09 Thread George
the rest of the data. Here's the bit of code where i try to set the parameters. Should this be else where? Thanks, George if (keyCode == KeyEvent.KEYCODE_SPACE) { android.hardware.Camera.Parameters parameters = mCamera.getParameters

[android-beginners] Re: Camera class doesn't save exif data?

2009-02-10 Thread George
.. ImageManager.instance().addImage(..) - the source code of which seems to be doing stuff with exif information. Should i be using the ImageManager to save the images? I still can't for the life of me see where the rest of the EXIF information comes from either! Any ideas? Cheers, George On Feb 10, 7:46 am

[android-beginners] Re: Camera class doesn't save exif data?

2009-02-10 Thread George
coding Bits Per Sample : 8 Color Components: 3 Y Cb Cr Sub Sampling: YCbCr4:2:0 (2 2) Image Size : 2048x1536 Thats all the info i can pull using exiftool from the command line. George On Feb 10, 7:46 am, Dave Sparks davidspa

[android-beginners] Re: Camera class doesn't save exif data?

2009-02-10 Thread George
(Bitmap.CompressFormat.JPEG, 85, outStream); outStream.close(); } catch (Exception e) { Log.e(TAG, exception while writing image, e); } Thanks, George On Feb 10, 5:49 pm, Dave Sparks davidspa

[android-beginners] Re: Camera class doesn't save exif data?

2009-02-10 Thread George
(Bitmap.CompressFormat.JPEG, 85, outStream); outStream.close(); } catch (Exception e) { Log.e(TAG, exception while writing image, e); } Thanks, George On Feb 10, 5:49 pm, Dave Sparks davidspa

[android-beginners] Re: Camera class doesn't save exif data?

2009-02-10 Thread George
(Bitmap.CompressFormat.JPEG, 85, outStream); outStream.close(); } catch (Exception e) { Log.e(TAG, exception while writing image, e); } Thanks, George On Feb 10, 5:49 pm, Dave Sparks davidspa

[android-beginners] Getting a bearing from the sensor manager

2009-02-10 Thread George
? Thanks, George --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to android-beginners

[android-beginners] Services and proximity alerts

2009-03-02 Thread George
. This service will be independent of other applications, i only want it for notification really. I've been looking at the services documentation but i'm still lost where to start. Can somebody give me some pointers? Do i need a remote service? Thanks, George

[android-beginners] Proximity alerts and pending intents

2009-03-04 Thread George
, android.intent.action.PROXIMITY_ALERT is broadcast for a receiver to pickup. Eclipse is telling me that i need to chance getContext to getBaseContext, but proximity alerts aren't firing when i change this. Any pointers? Thanks for any help, George --~--~-~--~~~---~--~~ You

[android-beginners] Re: Proximity alerts and pending intents

2009-03-04 Thread George
I've been looking through logcat and i've noticed I/LocationManagerService( 56): Entered alert Does this mean my alerts are firing, but my intents aren't being received by my intent receiver? Thanks, George On Mar 5, 2:17 am, George she...@gmail.com wrote: Hello, I'm writing

[android-beginners] Re: Proximity alerts and pending intents

2009-03-05 Thread George
Nevermind, sorted this now :) On Mar 5, 3:10 am, George she...@gmail.com wrote: I've been looking through logcat and i've noticed I/LocationManagerService(   56): Entered alert Does this mean my alerts are firing, but my intents aren't being received by my intent receiver? Thanks

[android-beginners] Subclassed ImageView does not draw in Gallery View

2009-04-09 Thread George
I am subclassing the ImageView class and adding to the Gallery View. But, nothing seems to get drawn in the expected location; though I can fling through the Gallery list. I added an image from a resource, and it shows up correctly in the Gallery. Any idea on why this may be happening? Here is

[android-beginners] OnDraw in subclass of ImageView not working with custom canvas drawing

2009-04-09 Thread George
I subclassed the ImageView class inorder to draw a Picture in an ImageView. The ImageView is added to a Gallery In my activity class: Gallery g = (Gallery) findViewById(R.id.gallery); g.setAdapter(new ImageAdapter(this)); My Adapter class: private class ImageAdapter extends BaseAdapter{ ..

[android-beginners] AlertDialog spawning another AlertDialog

2009-06-16 Thread George
AlertDialog with an edittext box and an ok button but can't get it working. Any pointers? Thanks, George ArrayAdapterString array_adapter = new ArrayAdapterString( CameraFinal.this, R.layout.simple_list_item_1, tagsf

[android-beginners] Audio/Video User Interface

2009-07-31 Thread george
Hi, I need to develope a user interface for streaming audio/video. I know that video has its own user interface but I need to start from scratch. Does anyone know of a way utilizing the progress bar with the video/audio streaming? --~--~-~--~~~---~--~~ You

[android-beginners] android bluetooth

2009-11-05 Thread george
hi all can i enable the bluetooth on sdk 2.0 emulator thnks -- You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to

[android-beginners] how to send message to a speceific port

2009-12-24 Thread george
Hi all i want to send a text message on a specific port how to do it can any one help thanks much -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack Overflow at

[android-beginners] play an audio file on a voice call

2010-04-20 Thread george
George -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to android-beginners+unsubscr

[android-beginners] RTSP Video packet loss ratio, jitter and delay

2010-06-15 Thread George
I am streaming an rtsp video to Android. How could I calculate network metrics like packet loss ratio, jitter or network delay? -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack Overflow at

RES: [android-beginners] Re: Sqlite connection coding

2008-12-12 Thread George Lanes
Try this books. Android, A Programmer's Guide from J.F. DiMarzio http://book.pdfchm.com/android-a-programmers-guide-12791/ Android Essentials (Firstpress) from Chris Haseman http://book.pdfchm.com/android-essentials-firstpress--11777/ George Lanes -Mensagem original- De: android

RES: [android-beginners] Activating dev phone with ATT sim card?

2008-12-23 Thread George Lanes
Hi, First you Will need to set the APN. Check this parameter (3G connection like) with ATT. After this, try to connect to Google. Regards, George -Mensagem original- De: android-beginners@googlegroups.com [mailto:android-beginn...@googlegroups.com] Em nome de sherifffruitfly Enviada

[android-beginners] unsubscribe

2009-06-23 Thread George Oldone
_ Bing™ brings you maps, menus, and reviews organized in one place. Try it now. http://www.bing.com/search?q=restaurantsform=MLOGENpubl=WLHMTAGcrea=TEXT_MLOGEN_Core_tagline_local_1x1

[android-beginners] Re: connection via adb

2009-07-07 Thread George Francis
, baseband 62.33.20.08H, Kernel 2.6.25, build kila-user 1.1 plat-rc33. Thanks in advance for any help getting my phone connected. Cheers, -- George Francis e-mail: gfranc...@gmail.com --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-beginners] email preferences

2009-11-19 Thread Don George
why is it that even tho' I've set my email preferences to receive only one email a day I am still getting dozens of them? -- nmharleyrider Fax# 505-296-0194 Mobile# 505-615-2190 Albuquerque, NM 87110 -- You received this message because you are subscribed to the Google Groups Android Beginners