Re: [android-beginners] Cannot get MSISDN (phone number) but can get IMSI on HTC G3

2009-11-19 Thread Marc Lester Tan
I think some carriers don't provide the MSISDN to the handset so I guess you shouldn't rely on it. Just use the IMSI and device id to identify the user. Marc On Thu, Nov 19, 2009 at 11:40 PM, rodger rodge...@gmail.com wrote: I want to use phone number as user ID,so i want to access the phone

[android-beginners] Re: Android Charts

2009-10-18 Thread Marc Lester Tan
See if this will work for you: http://www.achartengine.org It's free. Marc On Fri, Oct 16, 2009 at 8:09 PM, Vinicius Carvalho viniciusccarva...@gmail.com wrote: Hello there! I'm starting with android, and the app I'm developing is gonna need some charts. I've looked and did not find any

[android-beginners] Re: Publish an ADC2 application

2009-09-08 Thread Marc Lester Tan
refactor your app to use a different package name as well as different title. On Tue, Sep 8, 2009 at 6:37 PM, jaaaelpumuki jaaaelpum...@gmail.com wrote: HI, I'm trying to publish my ADC2 application in the normal market, but it throws me this message: You have another application on Market

[android-beginners] Re: A Racing Car App in Android

2009-09-02 Thread Marc Lester Tan
try this http://nehe.gamedev.net/ and someone already ported the tutorials to android here http://insanitydesign.com/wp/projects/nehe-android-ports/ -Marc On Wed, Sep 2, 2009 at 1:48 AM, Maxood maqs...@salsoft.net wrote: I want to develop an application that involves a racing car. The car

[android-beginners] Re: 500kb OPML parsing issues

2009-06-10 Thread Marc Lester Tan
or use Pull Parser: http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html -Marc On Wed, Jun 10, 2009 at 3:59 PM, Dave Bordoley bordo...@gmail.com wrote: Use a SAX parser to parse the XML, see http://developer.android.com/reference/javax/xml/parsers/SAXParser.html.

[android-beginners] Re: Google Maps API Key Sign Up Page Is Broken (404)

2009-06-08 Thread Marc Lester Tan
Use this instead: http://code.google.com/android/maps-api-signup.html -Marc Tan On Mon, Jun 8, 2009 at 2:28 AM, Yubr Neapow epacha...@gmail.com wrote: http://code.google.com/android/add-ons/google-apis/maps-api-signup.html The link above WORKS but when you hit submit, the form action is a

[android-beginners] Re: Rooting ADP1 holiday edition

2009-06-06 Thread Marc Lester Tan
Hi Mina, It would be better if you head over xda and post your questions there. http://forum.xda-developers.com/forumdisplay.php?f=448order=descpage=2 Regards, Marc On Sat, Jun 6, 2009 at 4:02 AM, Mina Shokry minasho...@gmail.com wrote: Hi, I got an ADP1 but not from google (from ebay) and

[android-beginners] Re: Android 1.5 SDK now available

2009-04-27 Thread Marc Lester Tan
It works perfectly on my ADP! Still playing around with it -Marc On Tue, Apr 28, 2009 at 2:12 AM, Xavier Ducrohet x...@android.com wrote: Hello developers, The Android 1.5 SDK, and the 1.5 images for ADP1 are now available for download. More information at

[android-beginners] Re: MediaPlayer Volume Range

2009-01-08 Thread Marc Lester Tan
multiplier will vary according to purpose. For example, the Android music volume control is much finer grained (32 steps?) than the notification volume control (8 steps?). To get a smooth fade, you probably want to use 1dB or less (1dB = ~0.89). On Jan 7, 3:04 am, Marc Lester Tan mail

[android-beginners] Re: MediaPlayer Volume Range

2009-01-08 Thread Marc Lester Tan
of layers between the Java client and the audio output - it looks like some nasty wrapping effects will occur if you use values higher than 1.0. I would consider that a bug in the code. I suggest sticking to values between 0 and 1. On Jan 8, 3:41 am, Marc Lester Tan mail...@gmail.com wrote

[android-beginners] Re: Soap Xml parsing

2008-11-27 Thread Marc Lester Tan
Hi, I'm still new with android but hopefully this snippet will help you: Let's say you have your Service class: public class Service{ private String serviceId private String name private String deviceId // GETTERS AND SETTERS

[android-beginners] Re: Novice programmers lets build together.

2008-10-29 Thread Marc Lester Tan
Hi folks, i'm using java for 5 years now though still a newbie in developing for android and I'm interested to team up with anyone for a project. Marc On Tue, Oct 28, 2008 at 11:19 PM, DSKG87 [EMAIL PROTECTED] wrote: hey there, i'm new to programming and wanted to know anyone out there

[android-beginners] no XMPP support?

2008-10-26 Thread Marc Lester Tan
Hi Folks, I've search Android Docs and it seems there is really no support for XMPP? Is it possible to use third party library? -Marc --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post

[android-beginners] Displaying CR LF on TextView

2008-10-07 Thread Marc Lester Tan
Hi Folks, My application needs to display CR LF (new line) on the TextView. Currently it just display a small square box instead of a new line. My data is coming from an RSS feed and my application is parsing the text properly. It's just that the TextView doesn't display CR LF characters

[android-beginners] Landscape mode for the Emulator?

2008-10-06 Thread Marc Lester Tan
Hi folks, Is it possible to change the emulator's view to landscape? Thanks in advance. Marc --~--~-~--~~~---~--~~ 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] Any good Book on Android?

2008-09-30 Thread Marc Lester Tan
Hi folks, Any suggestion for a nice, newbie-friendly Android book? -Marc --~--~-~--~~~---~--~~ 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] Displaying Image Gallery

2008-09-29 Thread Marc Lester Tan
Hi folks, I'm still learning a lot from the tutorials and sample codes. But could anyone give some example on how to display an Image with a given URL (for example, link from a flickr). I'm actually planning to create a gallery pulled from an RSS feed. Thanks in advance.