[android-beginners] Re: need help in getting screen coordinates of a view

2009-03-23 Thread kavitha
Hi Romain Guy,, Thanks for the reply. I am very new to android.Could you please tell me an example of doing this??I am very new to android. Looking for your reponse. Thanks Kavitha On Mon, Mar 23, 2009 at 7:48 AM, Romain Guy romain...@google.com wrote: You can only do this after

[android-beginners] Please help in getting screen coordinates of a view

2009-03-23 Thread kavitha
Hii All, I am developing a game in android and i want to capture screen coordinates of a view(ImageView) which is embedded in frame. Hierarchy is LinearLayout android android:layout_height=fill_parent android:layout_width=fill_parent RelativeLayout android:layout_height=fill_parent

[android-beginners] Re: Publishing Apps

2009-03-23 Thread Scrubs
Bump?! --~--~-~--~~~---~--~~ 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 email to

[android-beginners] Re: How do I set the value of an EditText

2009-03-23 Thread Lovedumplingx
I get a NullPointer Exception when I use the Debug tool. So you're saying that I haven't successfully read the View probably? Ok...that's a great starting point. On Mar 21, 5:55 am, Tseng tseng.priv...@googlemail.com wrote: An error message would be helpful Otherwise it's hard to help you,

[android-beginners] Re: Publishing Apps

2009-03-23 Thread Ivan Soto
You can't. You can only publish a paid app from US or UK. Just to clarify, not FOR US and UK markets but only from US and UK developers. Ivan Soto Fernandez Web Developer http://ivansotof.com On Mon, Mar 23, 2009 at 5:11 AM, Scrubs nov...@gmail.com wrote: Bump?!

[android-beginners] Re: Publishing Apps

2009-03-23 Thread Paper Coder
I live outside the USA, but my account is registered to an address and bank account in the USA. I'm hoping I can publish for both the US and UK markets. Otherwise, I'll have no choice but to have family stateside go through all the work of uploading apps. On Mon, Mar 23, 2009 at 11:09 PM,

[android-beginners] Does any one know how to put pkcs11.so into Android ?

2009-03-23 Thread mlimsm1
Hi, Does any one know how to put pkcs11.so into Android ? Best regards. mli --~--~-~--~~~---~--~~ 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] Bluetooth

2009-03-23 Thread Rui Freitas
Hi, I am interested in building an application with bluetooth support. I read that the new android SDK supports bluetooth, but I can't find the API. It is possible to work with the bluetooth with the latest SDK? Or I need to do something else, or it is just not possible? regards

[android-beginners] HelloGallery tutorial: android.R.styleable cannot be resolved

2009-03-23 Thread ppmoore
Hello, I've been following the Views tutorials included in the android developer site: http://developer.android.com/guide/t...o-gallery.html When testing the Hello Gallery view, I get the compile-time error: android.R.styleable cannot be resolved I searched for this error on this group but is

[android-beginners] XML Dom parser throws error input source needs either stream or reader

2009-03-23 Thread Makrand
Hello I am new to android development, right now i am doing a simple project that receive data from XML and display on screen. for retrieving data from XMl file I have used Dom parser but at run time it will throw an error. The SAX Exceptioninput source needs either stream or reader

[android-beginners] Trouble with HelloWorld

2009-03-23 Thread ml
I am having trouble with the hello world application. My emulator starts and ultimately gets to a screen with that says android and shows the android logo. I never get to the hello world or phone startup screens. The last message I see in Eclipse is: Waiting for HOME ('android.process.acore') to

[android-beginners] Questions (Google IM, Latitude and other services)

2009-03-23 Thread Sander
Hi there, I have a couple of questions. First of all, will the Google IM API be opened? I mean, will it be possible to provide other clients (protocols) that would fit into the framework of the IM application? I know that the non-developer version of the phone ships with other protocols (that

[android-beginners] Re: separating the decimal from the whole?

2009-03-23 Thread sm1
here's a slower but sometimes more precise way, e.g., if you're dealing with currency: double d = 124.50d; BigDecimal ii = new BigDecimal(+d); Log.d(whole and decimal,BigDecimal ii = +ii+ = new BigDecimal (\\+d); d = +d); Log.d(whole and decimal,whole = ii.intValue() =