[android-beginners] Unable to set up email application on emulator for android 1.6

2010-04-13 Thread wahib
hi experts !! I am unable to configure email application correctly on emulator as i have to use the built-in email app for sending emails using intent. I am using 1.6 version. I followed this tutorial http://blog.brightpointuk.co.uk/setting-pop-imap-email-account-android-1x but when ever i try

[android-beginners] Re: Initializing a custom view via XML

2010-04-13 Thread jrichards1...@googlemail.com
Hi. does anybody have any idea please on how to set the size of my custom view using android:layout_height and android:layout_width? On Apr 5, 7:38 pm, jrichards1...@googlemail.com jrichards1...@googlemail.com wrote: As the title says, i am trying to use acustomviewi have created

[android-beginners] listen for changes made in ContactMethod table

2010-04-13 Thread jrichards1...@googlemail.com
Hi. i am trying to listen out for for changes made in ContactMethod table using the code below: mPeopleObserver = new ContactContentObserver(mHandler); this.getContentResolver().registerContentObserver(Contacts.ContactMethods.CONTENT_URI, true,

[android-beginners] Re: JavaScript problem in webview

2010-04-13 Thread Tereno
Hi there, You definitely need to post more details about it. T On Apr 12, 3:26 am, brijesh masrani masrani.brij...@gmail.com wrote: Hello, I have a JavaScript function which returns a value and i want to use that value in my Android program. Can anyone please tell me how to do that.

Re: [android-beginners] The primitive type int of R does not have a field layout

2010-04-13 Thread Sebastián Treu
On Mon, Apr 12, 2010 at 1:01 AM, BobG bobgard...@aol.com wrote: Thats the  error on R.layout.main... so something needs to be deleted somewhere? You can always check the R class on the gen/package dir. -- If you want freedom, compile the source. Get gentoo. Sebastián Treu

Re: [android-beginners] encoded polyline drawing in google map

2010-04-13 Thread Sebastián Treu
On Sat, Apr 10, 2010 at 8:57 PM, Ahsan ahsan@gmail.com wrote: Dear Friends, I cant find any class/method to draw encoded polylines in google maps in android. Can anyone please help me ? You mean, polygons? You draw on Overlays and then you add it to the Overlay list of the MapView. -- If

[android-beginners] Turning a website into an Android ap

2010-04-13 Thread HOWLColorado
I am starting up in the whole Android developer thing... I have some familiarity with the programming language. But the subtleties of the android application development is what's tripping me up. I managed to read in an XML feed, but while I can put a link around the headlines but that opens the

Re: [android-beginners] Turning a website into an Android ap

2010-04-13 Thread ~ TreKing
On Tue, Apr 13, 2010 at 12:09 PM, HOWLColorado mark.grain...@gmail.comwrote: What is the part I am missing here? WebView? - TreKing - Chicago transit tracking app for Android-powered devices

[android-beginners] Sync Google mail hourly?

2010-04-13 Thread Troglodad
Is there a way to auto sync my Google Mail with my G1 hourly, but not sync my contacts? (They seem to erase sometimes) I'm on 1.6 OS -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack

[android-beginners] Re: Need Help: Can't play multiple sounds simultaneously with SoundPool

2010-04-13 Thread Jack
Thanks BobG. But it doesn't work. I was told that if I call mSoundManager.playSound() twice in immediate succession, then it might work, but it doesn't. Can somebody help? On Apr 13, 12:53 pm, BobG bobgard...@aol.com wrote: Try declaring soundpool for 4 more sounds than you want to play.

[android-beginners] Re: Draw Text on GLSurfaceView

2010-04-13 Thread MrChaz
The Sprite Text example should show you how. What I do is essentially you write onto a bitmap via a canvas and then update the texture in openGL. That way I can use that texture on a usual sprite On Apr 12, 3:39 pm, Android Developer renjithkum...@gmail.com wrote: Hi, Can anyone help me to