[android-developers] Re: Running Background Process

2008-07-16 Thread Jaikishan Jalan
Oh. I wonder where could be the problem. One possible location could be in my AndroidManifest.xml. Here is how it looks like : ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res/android; package=com.smartaddress uses-permission

[android-developers] Re: Does Android support IMS and SIP?

2008-07-16 Thread Volker Gropp
On Jul 15, 1:42 pm, Jagan B [EMAIL PROTECTED] wrote: Is there any API  for IMS and SIP for transfer the media files between two client applications made on Android? Hi, sadly there is no stack included. I'm working with mjSIP aswell, but experienced big performance issues and some bugs in the

[android-developers] Re: Running Background Process

2008-07-16 Thread Mark Murphy
Jaikishan Jalan wrote: I read the docs but could not really understand DEFAULT category. Can you please explain what is the difference between - HOME and DEFAULT Category? Heh. I can try. The docs say that HOME is the first activity that is displayed when the device boots. In other words,

[android-developers] How to put images in the ListView?

2008-07-16 Thread Pierre
Hi, all, I would like to make a ListView with images in the list? I have no idea how to put images in the list. Anyone can tell me how to do it? Thanks in advance. Pierre --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: Mocking the Camera in M5

2008-07-16 Thread Anil
Hi, In similar lines I've done a nasty hack for audio playback from an actual hardware that runs Android. In fact our BSP layer supports ALSA, but as far as I know the m5 release of Android SDK does not support ALSA audio. Hence I've brought up a client/server approach (UDP socket based)

[android-developers] Re: Device owner/user info

2008-07-16 Thread Sreegesh Pillai
Yes that is a possibility. Thanks. I figured that when you get a new phone with Android, you will need to set up a login, register owner details (eg email id). I was hoping that there was an API to access this information. On Jul 15, 11:54 pm, Hong [EMAIL PROTECTED] wrote: not sure what user

[android-developers] Re: Device owner/user info

2008-07-16 Thread Sreegesh Pillai
Do you know how to access the phone number/ IMEI number via some API in the SDK? Also, I guess I was hoping to find device owner information such as an email id, name etc. I figured that when you get a new Android phone you will need to set up a login as with other OS and this is the information

[android-developers] Re: Device owner/user info

2008-07-16 Thread Hong
many phones work out of the box once u pop in ur SIM card. users are not expected to create a login, enter email, etc, as they do to their PC. so better use MSISDN or IMEI, they are guaranteed to be unique. (Well, if the device is authorized, the IMEI will be unique. Some black market phones

[android-developers] Re: Does Android support IMS and SIP?

2008-07-16 Thread Lee S Dryburgh
No IMS handsets exist in the world AFAIK. And the whole concept of what constitutes IMS is in dis-array, so certainly no IMS API. Regards Lee 2008/7/15 Jagan B [EMAIL PROTECTED]: Is there any API for IMS and SIP for transfer the media files between two client applications made on Android?

[android-developers] Re: How to put images in the ListView?

2008-07-16 Thread Mark Murphy
I would like to make a ListView with images in the list? I have no idea how to put images in the list. Anyone can tell me how to do it? I've started a series of blog posts about this very topic over at AndroidGuys. The first one is up:

[android-developers] gallery question

2008-07-16 Thread kingkung
Hi all, I'm working with the Gallery (which is terrific btw), and I have a simple question. Right now, in order to scroll left and right in the gallery via the keypad, I have to move my cursor down to the gallery before I do anything. I want to make it so that regardless where the cursor is,

[android-developers] Android Tutorial - XML View inflation

2008-07-16 Thread [EMAIL PROTECTED]
This tutorial (http://developerlife.com/tutorials/?p=303) will show you how to instantiate or inflate a View from XML; this is useful for components that don't provide a Java API to tweak with certain style attributes. The Button class is used as an example; you can only get certain styles to

[android-developers] Android Tutorial - Option and Context menu

2008-07-16 Thread [EMAIL PROTECTED]
This tutorial (http://developerlife.com/tutorials/?p=304) will show you how to create options menu (hooks into the MENU button) and context menu (press and hold a component). --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Open GL Tutorial problem

2008-07-16 Thread Claudio Veas
Hello Group my name is Claudio Veas and Im having a problem while trying to execute the tutorial about Android with OPEN GL. The application consist of two activities one is for selecting the tutorials and then this activity calls another that according to the selection of the tutorial, it

[android-developers] Re: Open GL Tutorial problem

2008-07-16 Thread Steve Oldmeadow
Brendan posted a version of his tutorials for m5. See here: http://groups.google.com/group/android-developers/browse_thread/thread/4a1068f3ab9e801b/079dc8e63a63b8e1 I don't recall having any problems with it. I certainly didn't need to modify the code. Are you sure you have the correct

[android-developers] Helo with onActivityResult()

2008-07-16 Thread Casey Borders
I am starting a sub activity that browses for a file, then in the onActivityResult() method I parse the file that is returned. The trouble is that the parsing takes a little while and I am trying to pop up a progress dialog, but the file browser is visible until the onActivityResult() method

[android-developers] Re: Open GL Tutorial problem

2008-07-16 Thread Claudio Veas
thanks for the answer It definitely was the version I thougth I had downloaded the last one but it wasnt. Any way thanks a lot. Claudio Veas On Jul 16, 10:28 pm, Steve Oldmeadow [EMAIL PROTECTED] wrote: Brendan posted a version of his tutorials for m5.  See