[android-developers] Re: Is Android backwards compatible?

2009-12-01 Thread Andrex
I'd say if you want to support as many handsets as possible, take pcm2a's advice and target 1.5. However if you really need to take advantage of new resolutions or you're not worried about download totals I'd say target 1.6 and wait for the other devices to catch up. On Dec 1, 10:14 am, bennyb wr

[android-developers] Re: Send message

2008-12-04 Thread andrex
I solved, Just look the class notification, and notificionManager, if somebody has a quesuion about how, just ask --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] Re: Send message

2008-11-26 Thread andrex
Hi Stefan thanks, but Can I send me a message, to the emulator how run the application? or what can I do if i want to send an alert to the user, something like a wap push message or maybe a reminder. I'll be thanks for the answers --~--~-~--~~~---~--~~ You received

[android-developers] Send message

2008-11-25 Thread andrex
Hi all, can anyone help me, I want to send an auto message or an alert to the phone. I've trying this SmsManager sm = SmsManager.getDefault(); sm.sendTextMessage("5554",null, "My text Message", null, null); I put 5554 because is the emulator direcction. No errors, but the emulato

[android-developers] pass data between activities

2008-11-06 Thread andrex
Hi guys it's me again. I would like some help whit a little problem., I can't recovery the value of the activity that i call. Look the follow code. Manifest Main class prueba how extends of mapActivity this is the way what I call the actvi

[android-developers] Re: Create Data Base

2008-10-23 Thread andrex
Thanks Anm, but I'm looking for something diferent, i want to create a class like this(I got it from android example): public class base extends ContentProvider { private static final String TAG = "Base"; private static final String DATABASE_NAME = "base.db"; private static final

[android-developers] Create Data Base

2008-10-21 Thread andrex
Hi all, i was loking for an example of how to create a date base in sqlitedabase, but I was'n lucky. May someone help me whit that, maybe an example or a document. Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: Help Drawing Over Google Maps

2008-09-26 Thread andrex
Hi I got other question, how can I write a little description. I know that OverlayItem(prueba.Point , "Title","Snippet") has a tittle but how can i see that on the map. Thanks for the answer. --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: Help Drawing Over Google Maps

2008-09-26 Thread andrex
Great Thanks Peter, It worked so good. --~--~-~--~~~---~--~~ 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@googlegroups.com To unsubscribe from this

[android-developers] Help Drawing Over Google Maps

2008-09-25 Thread andrex
Hi, I have the follow code on my application: In the class Prueba: import android.os.Bundle; import android.view.*; import com.google.android.maps.GeoPoint; import com.google.android.maps.MapActivity; import com.google.android.maps.MapView; public class prueba extends MapActivity { Drawabl

[android-developers] Re: Drawing on MapView

2008-09-25 Thread andrex
Hi peter, i was trying use the code but i can't. I'll show you the code of my class import android.graphics.Canvas; import android.graphics.drawable.Drawable; import java.io.DataOutputStream; import java.io.OutputStream; import java.lang.reflect.Array; import java.net.HttpURLConnection; import j

[android-developers] Drawing on MapView

2008-09-17 Thread andrex
Hi, I'm new here, I need some help. I'm building an aplicattion which show maps. My problem is that I need write information over the map. I was ussing canvas package but It did not work. Can you help me please. --~--~-~--~~~---~--~~ You received this message becau

[android-developers] Re: HTC skin now available for Android Emulator!

2008-08-21 Thread Andrex
This is really cool, finally something to change it up a bit. Thanks! On Aug 21, 12:22 am, Tea Vui Huang <[EMAIL PROTECTED]> wrote: > HTC skin now available for Android Emulator!http://teavuihuang.com/android > > To install, download and unzip "HVGA-P-HTC.zip" to the Android skin > directory, e.g

[android-developers] Re: Call out to the community about the poor quality of Android's error messaging

2008-04-04 Thread Andrex
Well that's what you get when you program in the Java language... Although I agree, some errors are seemingly random. It'd be nice to have some sort of stability, but I'll make do because of how great Android is now already. On Apr 5, 12:19 am, acopernicus <[EMAIL PROTECTED]> wrote: > Yeah...the

[android-developers] Re: Why don't System.err and System.out point to the console?

2008-04-04 Thread Andrex
It's because the Android code isn't really Java, it's Dalvik, and the Android emultator makes you report those things to the Dalvik output. You yourself listed the process to print errors there, I suggest you use it. ;) On Apr 4, 7:34 pm, Anil <[EMAIL PROTECTED]> wrote: > It would be good for And