Re: [android-developers] Re: Bluetooth question regarding observing a pairing

2010-05-25 Thread Jake Maui
I don't know if it's because the chat program is only looking for a particular profile or not. Thanks On Mon, May 24, 2010 at 4:00 PM, DonFrench dcfre...@gmail.com wrote: Have you looked at the BluetoothChat example? It does what you want. On May 23, 10:03 am, Jake Maui jakemau...@gmail.com

Re: [android-developers] Re: Bluetooth question regarding observing a pairing

2010-05-25 Thread Jake Maui
connect to anything through the emulator. I think you will have to test your code using an actual phone. On May 25, 6:28 am, Jake Maui jakemau...@gmail.com wrote: Don, I'm trying to observe when my phone connects/disconnects from my PC by running the BluetoothChat in the debugger. I

[android-developers] Bluetooth question regarding observing a pairing

2010-05-23 Thread Jake Maui
Is there a way to observe a bluetooth pairing and then be aware of when the connection no longer exists? Basically I want to observe when my phone connects to another device and what that connection is dropped to that I may execute an action based on that connection. Thanks -- You received

[android-developers] Re: Adding images to emulator

2009-01-14 Thread Jake Maui
If you use eclipse, you can do a push through the ui On Tue, Jan 13, 2009 at 6:44 PM, kcode fghj...@gmail.com wrote: How can i add images to the phone(emulator),so that the image viewer can display them. Current when I initiate an image viewer, a message is displayed that there are no

[android-developers] Suppressing unwanted options in image handler

2008-12-08 Thread Jake Maui
I'm getting a chooser for this even though I don't specify chooser. I want this to go directly to the email handler intent and not even show the MMS option. Is there a way to suppress this option? Thanks Intent intent = new Intent(Intent.ACTION_SEND); intent.setType(image/png);

[android-developers] API for getting URL associated with a Geopoint

2008-11-19 Thread Jake Maui
Does anyone know of what the API is for getting URL's associated with a given Geopoint? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] API for arbitrary tags in an image file (location etc)?

2008-11-19 Thread Jake Maui
I noticed that Picassa can read location from tags in an image file. The camera in the G1 can update a tag for location. Is this available in an API so that we can do the same in our apps? Thx --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: Use Bundle to Pass Bitmap

2008-11-07 Thread Jake Maui
Josh, I tried that before ...it copies the bitmap by value into the bundle so it brings the app to it's knees and completely fails for larger bitmaps. -jm On Fri, Nov 7, 2008 at 9:14 AM, joshbeck [EMAIL PROTECTED] wrote: --Solved-- The answer seems to be. 'No.' It's inefficient, and

[android-developers] Extending ACTION_PICK ?

2008-11-04 Thread Jake Maui
Is there a way that anyone knows of to extend the view of the image picker? In particular, I'd like to decorate the image to indicate the the image has some property. Thx in advance ... private OnClickListener buttonListener = new OnClickListener() { public void onClick(View v)

[android-developers] How to use buildin email intent

2008-10-24 Thread Jake Maui
I'm trying to use the builtin email intent and so far I haven't found enough information to use it correctly. When I execute the following code, I get the message No applications can perform this action. This happens on emulator as well as real hardware. Can anyone tell me what piece is missing?

[android-developers] Mail api or access to mail authentication?

2008-10-16 Thread Jake Maui
Is there an api that would allow for sending of a photo from your application to an individual on the contacts list? If not, can we use Javamail but have access to stored authentication so that we don't require a user to have to go through a setup to store credentials?

[android-developers] Re: Collecting opinions about Android for an article

2008-10-16 Thread Jake Maui
The Android platform is a joy to develop. I've been a software developer for over 20 years now and I'd have to say that this is one of the few platform I've ever used where I didn't have to developer layers and layers of my own code to finally get something useful. The platform has many useful

[android-developers] Re: Intent's Extra transfer

2008-10-13 Thread Jake Maui
I believe I read somewhere that it's passed by value. This makes sense because I tried to pass a bitmap and it was extremely slow and there seemed to be a size limit beyond which, it would not work. If I come across the site that discussed that it was by value, I'll post it. On Mon, Oct 13,

[android-developers] Re: Intent's Extra transfer

2008-10-13 Thread Jake Maui
size. Peli www.openintents.org On Oct 13, 1:46 pm, Jake Maui [EMAIL PROTECTED] wrote: I believe I read somewhere that it's passed by value. This makes sense because I tried to pass a bitmap and it was extremely slow and there seemed to be a size limit beyond which, it would not work

[android-developers] Re: save image in Database

2008-10-02 Thread Jake Maui
Try smaller files. I've been able to read/write to my sdcard but have run into a 250 K limit. The emulator gives me an EOF -1 for bigger files for some reason. On Thu, Oct 2, 2008 at 10:28 AM, Nemat [EMAIL PROTECTED] wrote: ok.I have tried to save image in a file.But I couldnt do

[android-developers] Re: Working with Images

2008-10-01 Thread Jake Maui
I've had problems with images over 250K. Has anyone else has this problem? On Tue, Sep 30, 2008 at 2:57 PM, xMemphisx [EMAIL PROTECTED] wrote: Hello, What i'm currently trying to do, is load a large image... lets say the dimensions are 1500x1500... but then i want to create other images