[android-developers] Android USSD documentation

2009-01-21 Thread sabdart
Hi all, I read in the Android 1.0 release features (http://source.android.com/ release-features) that it supports Unstructured Supplementary Service Data (USSD) In the current sdk is it possible to access USSD from my code and if it is where can I find the documentation? Many Thanks Ray --~--~-

[android-developers] Dial a USSD code

2009-01-23 Thread sabdart
Hi, When I dial a divert number directly from the handset it works. For example: **004*+668190099# sets up my call forwarding to the number +668190099 However, when I try to do the same thing from within an application I get a problem. The number displayed in the dialer is missing the ending #.

[android-developers] Re: mail.jar activation.jar problem in android

2008-11-07 Thread sabdart
Hi Ena, your problem may be that you haven't given android permission to access the internet. Add the following to your AndroidManifest.xml Cheers Ray On Oct 27, 9:04 pm, ena <[EMAIL PROTECTED]> wrote: > im using > examplehttp://davanum.wordpress.com/2007/12/22/android-send-email-via-gmail-

[android-developers] Query the users phone number

2008-11-12 Thread sabdart
Hi, is it possible within the android API to query the phone number of the device running the application for use by that application? I don't mean to query phone numbers from the contacts list. Cheers Ray --~--~-~--~~~---~--~~ You received this message because y

[android-developers] WebView and setDownloadListener

2008-11-13 Thread sabdart
Hi, Can anyone point me to or provide an example of how to use setDownloadListener and WebView to download and play an mp3 in the media player? Cheers Ray --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Deve

[android-developers] Re: Dial a USSD code

2009-01-28 Thread sabdart
Not a bug and it is in the documentation (http://code.google.com/ android/reference/android/net/Uri.html) I should have been escaping the # symbol with %23 String encodedHash = Uri.encode("#"); startActivity(new Intent("android.intent.action.DIAL", Uri.parse("tel:**004*+668190099" + encoded