[android-beginners] Re: sqlite create two tables onCreate...

2008-10-14 Thread marstein
What was it? On Oct 13, 11:52 am, atrus123 <[EMAIL PROTECTED]> wrote: > nm... figured out what I was doing wrong. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send

[android-beginners] Install problem

2008-10-14 Thread satheesh kumar
hi i have a problem to install the Android SDK1.0. i download the SDK and unzip the file bt i got,"The file s corrupt". wat can i do for this? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group.

[android-beginners] Re: Returning Result from onClickListener

2008-10-14 Thread niels
For all who dont want to read all the above, here is what i want to: private boolean makeCDialog() creates a customized Dialog with an EditText and OK / Cancel. On pressing ok (so in the OnClickListener) the whole method should return either TRUE or FALSE. Since the onClickListener is something

[android-beginners] Re: Sending MMS messages

2008-10-14 Thread Sudha
Hi I have the same doubt We are having sendDataMessage() to send the mms (I guess) but it is sending in the form of byte[]. So my conclusion is that we can send mms if there is corresponding mms receiver in the other end (writen by ourself) Plz correct me if I am wrong --~--~-~--~~---

[android-beginners] Re: Returning Result from onClickListener

2008-10-14 Thread Stoyan Damov
Wrap the boolean result in another type, e.g. AtomicBoolean, make it final so it can be accessed in the inner class and then use the result, e.g.: final AtomicBoolean allowSettingNewPassword = new AtomicBoolean(false); ... in the onClick: allowSettingNewPassword.set(oldpass.equals(checkoldpass))

[android-beginners] Typing and drawing on the same View

2008-10-14 Thread Arron
Is it possible to type and draw (finger paint) on the same view? Do I need to create my own view to get this to work or does the sdk have an existing view I can use? Please point me in the right direction. Thanks. --~--~-~--~~~---~--~~ You received this message be

[android-beginners] Typing and drawing on the same View

2008-10-14 Thread Arron
Is it possible to type and draw (like finger paint) on the same view? Would I need to make my own view or does the sdk have an existing one I can possibly use for this? Can someone point me in the right direction? --~--~-~--~~~---~--~~ You received this message be

[android-beginners] Re: Manipulate 2D View in 3D OpenGL

2008-10-14 Thread Anm
On Oct 12, 4:38 pm, "Romain Guy" <[EMAIL PROTECTED]> wrote: > Rendering to OpenGL is a feature that got dropped for 1.0. Note that it > would simply render the same way as with a normal Canvas, it would not > automagically draw on an arbitrary mesh. On Oct 12, 5:25 pm, "Romain Guy" <[EMAIL PROTE

[android-beginners] Re: Manipulate 2D View in 3D OpenGL

2008-10-14 Thread Romain Guy
Do not use the Context(GL) constructor, it is *not* supported. On Tue, Oct 14, 2008 at 9:42 AM, Anm <[EMAIL PROTECTED]> wrote: > > > On Oct 12, 4:38 pm, "Romain Guy" <[EMAIL PROTECTED]> wrote: >> Rendering to OpenGL is a feature that got dropped for 1.0. Note that it >> would simply render the sa

[android-beginners] Re: Sending MMS messages

2008-10-14 Thread Cadge
What package is sendDataMessage() in? Is it well documented? On Oct 14, 10:01 am, Sudha <[EMAIL PROTECTED]> wrote: > Hi > I have the same doubt > We are having sendDataMessage() to send the mms (I guess) > but it is sending in the form of byte[]. > So my conclusion is that we can send mms if the

[android-beginners] Re: R.layout.dialog_activity cannot be resolved

2008-10-14 Thread mushimi
Thanks imran, your suggestion works! now dialog_activity.java has no error. But i faced another error in my main.xml after I post the above message and before i saw your answer. The main.xml is still exactly the same as above, but i played around with AndroidManifest.xml (and i forgot what i cha

[android-beginners] Circular Scroll

2008-10-14 Thread [EMAIL PROTECTED]
Hi, I'm new to android and I'd need some help. I'm currently trying to implement a circular scrolling in my Activity. I'd like to have the available items disposed on a circle and I would like to be able to rotate them so that the clickable item is going to be the one on the top of the circle.

[android-beginners] Does anyone know how to use LocationManager to show your location on Google Map?

2008-10-14 Thread Xiaomin Zhang
Even only the idea will be helpful! :) --~--~-~--~~~---~--~~ 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,

[android-beginners] Re: Returning Result from onClickListener

2008-10-14 Thread Timbobsteve
Hi Neils, Why not write the CDialog as it's own Activity, then set the theme to transparent so it looks like a Dialog. Then you can use startActivityForResult() and pass values to/from the new intent. Just a thought. Timbobsteve niels wrote: For all who dont want to read all the above,

[android-beginners] How to run j2me application in j2me runner

2008-10-14 Thread Sudha
hi I would like to run a j2me application in the j2merunner. I tried to put the url for getting the jad and jar but it showls exception null plz help me --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginne

[android-beginners] Re: Install problem

2008-10-14 Thread Android dev
try to download it again. There might be some problem with your internet connection On Mon, Oct 13, 2008 at 10:04 PM, satheesh kumar < [EMAIL PROTECTED]> wrote: > > hi i have a problem to install the Android SDK1.0. i download the SDK > and unzip the file bt i got,"The file s corrupt". wat can i

[android-beginners] Re: How to run j2me application in j2me runner

2008-10-14 Thread Dana Li
There is a bug in SDK 1.0 that mark one directory as read only. Please try: adb shell chmod 777 /data/dalvik-cache and then re-run it. DL On 10/14/08, Sudha <[EMAIL PROTECTED]> wrote: > > > hi > > I would like to run a j2me application in the j2merunner. > I tried to put the url for getting th

[android-beginners] Re: sqlite create two tables onCreate...

2008-10-14 Thread David C
It needs to be seperate calls. Multiple statements seperated by semi- colons are not supported. On Oct 13, 10:21 pm, marstein <[EMAIL PROTECTED]> wrote: > What was it? > > On Oct 13, 11:52 am, atrus123 <[EMAIL PROTECTED]> wrote: > > > nm... figured out what I was doing wrong. --~--~-~--~-

[android-beginners] Re: Setting Custom layout for ListView

2008-10-14 Thread David C
Looks like your Id tags are wrong. For example, unexpectedly". > > >  http://schemas.android.com/apk/res/ > android" >      android:orientation="vertical" >      android:layout_width="fill_parent" >      android:layout_height="fill_parent"> > >             android:layout_width="fill_parent" >  

[android-beginners] [android-beginners]-Does Android have "finger print program" for the security ?

2008-10-14 Thread Fahad Al-Faisal
Hello guys, I hope someone has the answer.. cheers Fahad. --~--~-~--~~~---~--~~ 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 unsubscri

[android-beginners] i am so beginner

2008-10-14 Thread Easan
can't even get eclipse to work. so sad in santa clara --~--~-~--~~~---~--~~ 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 unsubscrib

[android-beginners] Re: How to run j2me application in j2me runner

2008-10-14 Thread Sudha
hi thanks for your reply I did the imstallation now the icon is also coming but the build is not getting run... it shows a grey color screen when I clik on the icon. I used one motorola j2me build tried others also no effect --~--~-~--~~~---~--~~ You received this

[android-beginners] Re: Sending MMS messages

2008-10-14 Thread Sudha
import android.telephony.gsm.SmsManager As per me (I havent tried) we have to convert the receiving array back to the format... But I guess in this present situation of bitmap converioon skia error may come... Experts plz reply --~--~-~--~~~---~--~~ Y

[android-beginners] How to get the simulator working

2008-10-14 Thread Talha
hey im trying to start the simulator to see the hello world app to get a breif understanding but the window opens up and then closes. does ne1 kno how i can fix this as i have followed the steps in get started after downloading including setting the path. i have no idea n hav been trying for aged

[android-beginners] Locale Question

2008-10-14 Thread Geoff
How does Locale work? I am assuming it is using it's GPS to locate where you are and changes your phone settings accordingly... will this be a large toll on the battery? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups