[android-beginners] Re: Multilingual application

2009-01-25 Thread Yiannis Diamantopoulos
Dear Mark, Thank you for your advice. If I anderstand correctly I only have to create the forders under res/ and the strings I want to use; and the android platform will choose the correct one based on the phones settings... How can I make my application to ask the user in wich language should

[android-beginners] Re: R.java file dont update

2009-01-25 Thread madcoder
Right-click the raw folder, then select 'import'. From there, expand the 'general' file, select 'file system'. Then click the 'next' button. Click the 'browse' button, then locate the folder containing the files you want to import. Select that folder, and your files should appear on the right

[android-beginners] How to show a dialog on top of another dialog in an activity

2009-01-25 Thread Juan David Trujillo C.
Hi guys! I have an activity that shows a dialog that has some editText fields the user is supposed to fill in. I would like to validate if the user entered information in some fields, and in case he didn't, I would like to show a dialog with an appropiate message on top of the aforementioned

[android-beginners] Re: Camera Preview Sizing

2009-01-25 Thread Dave Sparks
The preview surface on the G1 can be any size within a factor of 2x (if I remember correctly) of the dimensions of the camera preview. By default the camera preview frame is 480x320, so you should be able to get away with 240x160. In my test application, I created a subclass of SurfaceView

[android-beginners] Internet on emulator

2009-01-25 Thread Zeeshan Ahmad
Can we surf the net on emulator ??? --~--~-~--~~~---~--~~ 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@googlegroups.com To unsubscribe from this group, send

[android-beginners] Question about message flow of Android Browser..

2009-01-25 Thread ritter.han
Hi, I'm studying Android Browser and wanna know how request messages are sent. Please help me to find out the mechanism of sending and receiving messages. For instance, let's say I tapped a 'Refresh' item in menu. I'd found the flow of request message like as below.

[android-beginners] Contacts: displaying company as Unknown

2009-01-25 Thread dizzy
Hi, I just bought the android and to my disappointment, it does not have the ability to sync with Outlook contacts and tasks easily. So i download the ICompanionLink software and used that to sync the G1 with my outlook. However, i have one problem i am seeing.. In my outlookk contacts, i

[android-beginners] How to create and view my map(Google Map)?

2009-01-25 Thread ibuun
I would like to create and view my map(Google My Maps) with my Android app. I looked for a class library and an tutorial,but I gave up. Does anybody have an idea? Should I have to start making codes from zero reffering to Google Maps Api Doc ?

[android-beginners] Where to announce a new app?

2009-01-25 Thread Mariano Kamp
Hi, I wrote an app that I would like to announce. Is this something which belongs to this or any of the other Android mailing lists? Cheers, Mariano --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-beginners] Re: String[]

2009-01-25 Thread Mark Murphy
joshspoon wrote: I'm trying to create an array of string. It's not working for me. I wrote: String[] array = new String[] {sunday, good }; The problems tell me panel is telling me: The local variable array is never read. What does that mean? It's a warning. Try: String[] array = {sunday,

[android-beginners] Name that service ...

2009-01-25 Thread robotissues
I would like to call the service that makes the phone jump when an icon is selected on the home screen (it does this on the G1 at any rate). Part of the problem is that I have no idea what to call it so I do not know how to find it! Does anyone know if this service is exposed and if so, what is

[android-beginners] Scrolling TextView that automatically scrolls to bottom

2009-01-25 Thread Roman Romano
Hi All, I have a textview that is wrapped in a scrollview and works nicely. The only problem is that when text is appended to the textview so as to induce scrollability, it doesn't automatically scroll to the bottom of the textview, ihave to manually scroll down. Is there any way to achieve this

[android-beginners] Re: Internet on emulator

2009-01-25 Thread Kather Jailani
Yes u can On Jan 25, 2009 3:14 PM, Zeeshan Ahmad md.z.ah...@gmail.com wrote: Can we surf the net on emulator ??? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send

[android-beginners] Re: Code Example

2009-01-25 Thread Kevin J. Brooks
Ok, I think I am making this harder than it has to be. What else do I need in my application to make this work? On Tue, 2009-01-13 at 18:04 +0530, PRATAP SOLAPUR wrote: import android.app.Activity; import android.os.Bundle; import android.webkit.WebView; public class

[android-beginners] Re: How to create and view my map(Google Map)?

2009-01-25 Thread shobhit kasliwal
Hope this link will help you in creating Map application... http://www.devx.com/wireless/Article/39145 On Sun, Jan 25, 2009 at 3:58 AM, ibuun ibu...@gmail.com wrote: I would like to create and view my map(Google My Maps) with my Android app. I looked for a class library and an tutorial,but

[android-beginners] Re: How to show a dialog on top of another dialog in an activity

2009-01-25 Thread Juan David Trujillo C.
In case this is useful, I found it: You can't use a regular dialog with the possitive and negative buttons, what you have to do is to create the buttons inside the UI of the dialog you want to show and then add regular listeners to this buttons. When you want to hide the dialog, all you have to