[android-beginners] Re: One problem with varible passing

2008-12-06 Thread [EMAIL PROTECTED]
Thanks for the reply. I will try using that. But this is a new concept for me. Thanks again. On Dec 6, 8:35 am, Lawrence Samantha [EMAIL PROTECTED] wrote: Might not be the best solution but how about using singleton ? 2008/12/6 [EMAIL PROTECTED] [EMAIL PROTECTED] Hi, I have 2

[android-beginners] Graphics tutorial resources?

2008-12-04 Thread [EMAIL PROTECTED]
! --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options

[android-beginners] Re: I'm Trying To Learn.......

2008-12-01 Thread [EMAIL PROTECTED]
Yes, that's obvious looking at it on another day. Thanks for the reply. Fred On Nov 30, 2:17 pm, Ralf [EMAIL PROTECTED] wrote: As you indicated, you need to create an activity. The class referenced in the activity tag must derive from Activity, not from a TextView. The structure you want

[android-beginners] Re: Phone + Layout orientation.

2008-12-01 Thread [EMAIL PROTECTED]
. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] I'm Trying To Learn.......

2008-11-30 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group

[android-beginners] Problem with configuring ADT (failed to get the required adt version from sdk)

2008-11-30 Thread [EMAIL PROTECTED]
. What's wrong? --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED

[android-beginners] File Access Error.

2008-11-28 Thread [EMAIL PROTECTED]
! :) --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options

[android-beginners] Re: File Access Error.

2008-11-28 Thread [EMAIL PROTECTED]
a.. my try/catch statement was catching something which i assumed would be a file error, but was in fact an error as a result of me building a table. Thanks. On Nov 28, 5:46 pm, Mark Murphy [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: However when I attempt to open the file I get

[android-beginners] Adding Views to an inflated layout.

2008-11-28 Thread [EMAIL PROTECTED]
... I can provide code if needed. Any suggestions? On Nov 28, 6:14 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: a.. my try/catch statement was catching something which i assumed would be a file error, but was in fact an error as a result of me building a table. Thanks. On Nov 28

[android-beginners] Re: Adding Views to an inflated layout.

2008-11-28 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: Adding Views to an inflated layout.

2008-11-28 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: Adding Views to an inflated layout.

2008-11-28 Thread [EMAIL PROTECTED]
I couldn't work out why the table wasn't displaying so I gave in and did it a much more clumsy, but foolproof way - by laying the table out in an xml file and editing the text in each cell in turn. On Nov 29, 1:01 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks Mark, This has helped

[android-beginners] SQLite failed when appending offset statement for limit cause

2008-11-26 Thread [EMAIL PROTECTED]
@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Home Sample has arrived and I can't make it go away

2008-11-25 Thread [EMAIL PROTECTED]
To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Phone + Layout orientation.

2008-11-24 Thread [EMAIL PROTECTED]
. --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options

[android-beginners] Re: Radogroup layout question.

2008-11-21 Thread [EMAIL PROTECTED]
in this method, I got null pointer exceptions. :( On Nov 21, 6:28 pm, Mark Murphy [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Is it possible to make 2 lines of buttons in a radio group? I would like a radio group consisting of 6 buttons, in 2 rows of 3. That should be doable. RadioGroup

[android-beginners] Re: Radogroup layout question.

2008-11-21 Thread [EMAIL PROTECTED]
{ topRowGroup.clearCheck(); } } What I had not thought about is that clearCheck() results in onCheckChanged being called, which results in my top if-statement causing the null pointer exception. On Nov 21, 7:11 pm, Mark Murphy [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Thanks Mark

[android-beginners] Re: Radogroup layout question.

2008-11-21 Thread [EMAIL PROTECTED]
I wish there was an edit button here! How can I perform a null check on an int? If I use if (checkedId != null) I get the error The operator != is undefined for the argument type(s) int, null. On Nov 21, 7:31 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Okay, grandchildren wont work

[android-beginners] Re: Radogroup layout question.

2008-11-21 Thread [EMAIL PROTECTED]
/AndroidRuntime(446): java.lang.NullPointerException I will have a look later at how to get around this. Thanks for all your help. On Nov 21, 7:41 pm, Mark Murphy [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: I wish there was an edit button here! How can I perform a null check on an int

[android-beginners] Re: How to let image scaled to appropriate size.

2008-11-20 Thread [EMAIL PROTECTED]
android:layout_height=wrap_content android:text=Meow... / /LinearLayout /LinearLayout [/XML] On 11月19日, 下午10時21分, Mark Dodgson [EMAIL PROTECTED] wrote: I am new to this but I think android:weight is now an invalid attribute. You should use

[android-beginners] developing on DEC Alpha with FreeBSD

2008-11-20 Thread [EMAIL PROTECTED]
Is it possible? --~--~-~--~~~---~--~~ 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 [EMAIL

[android-beginners] Re: posibility of self-acting sms/ mms an phone calls

2008-11-20 Thread [EMAIL PROTECTED]
and messaging, you'd be suspicious. This is not to say that applications that you WOULD expect to use the dialer etc. can't do unexpected things with the permissions, but that is where trust and respect come into play. On Nov 20, 11:51 am, Mak [EMAIL PROTECTED] wrote: Hello everyone. Is there a chance

[android-beginners] Re: How to let image scaled to appropriate size.

2008-11-19 Thread [EMAIL PROTECTED]
android:weight=1 / /LinearLayout ...snip!... Please let me know if this works! On Nov 19, 4:13 am, Brian Hsu [EMAIL PROTECTED] wrote: I would like make an UI consist with a ImageView, a button and two TextView in a vertical LinearLayout. But there is a problem -- my

[android-beginners] Re: View.SetBackgroundColor(int color) simple question

2008-11-19 Thread [EMAIL PROTECTED]
Thanks very much :) On Nov 19, 3:46 pm, Dennis Wilmsmann [EMAIL PROTECTED] wrote: Use the pre-defined colors from Java: int i = Color.RED; int j = Color.BLUE; ... Dennis On 19 Nov., 16:34, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: So the android documentation helpfully tells me

[android-beginners] Re: View.SetBackgroundColor(int color) simple question

2008-11-19 Thread [EMAIL PROTECTED]
Is it possible to define one's own colours? I noticed there are a very limited selection that are predefined. I know if I was using xml to generate the view it's possible to define the background as a hex value. Can I do something similar at runtime? On Nov 19, 4:09 pm, [EMAIL PROTECTED] [EMAIL

[android-beginners] Re: Hai

2008-11-18 Thread [EMAIL PROTECTED]
There are plenty of tutorials on the android SQLite database creation - google that. You could also try db4o, it's slightly easier than SQLite. check out http://www.db4o.com/android/ On Nov 18, 9:56 am, habi [EMAIL PROTECTED] wrote: Dear friends,                  I am new to android project

[android-beginners] Sample's Dont' Work

2008-11-18 Thread [EMAIL PROTECTED]
group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Where can I find output of System.out.println?

2008-11-18 Thread [EMAIL PROTECTED]
. --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit

[android-beginners] Re: Using RMI in Android

2008-11-17 Thread [EMAIL PROTECTED]
group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: Problem with Intent and Activity

2008-11-17 Thread [EMAIL PROTECTED]
Thanks, I checked APIDemos and got this line in manifest file: category android:name=android.intent.category.SAMPLE_CODE / I am thinking abt that but not sure.So thank for the hint. Bye. On Nov 16, 2:47 pm, Mark Murphy [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Hi, I am facing one

[android-beginners] Re: java + android newbie! - help on saving data.

2008-11-17 Thread [EMAIL PROTECTED]
Thanks for both replies :) I will check out both options and post some feedback. On Nov 17, 10:21 am, Dennis Wilmsmann [EMAIL PROTECTED] wrote: I'm currently using db4o instead of SQLite to store data. The usage of db4o is easy and quick to learn; the tutorials provide good sample code

[android-beginners] Re: Problem with Intent and Activity

2008-11-17 Thread [EMAIL PROTECTED]
PROTECTED] [EMAIL PROTECTED] wrote: Thanks, I checked APIDemos and got this line in manifest file: category android:name=android.intent.category.SAMPLE_CODE / I am thinking abt that but not sure.So thank for the hint. Bye. On Nov 16, 2:47 pm, Mark Murphy [EMAIL PROTECTED] wrote: [EMAIL

[android-beginners] Usage of Radio Group and radio Button

2008-11-17 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Problem with Intent and Activity

2008-11-16 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Why China developer cannot register android market?

2008-11-16 Thread [EMAIL PROTECTED]
--~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http

[android-beginners] Re: Difference between Emulator and Real phone

2008-11-16 Thread [EMAIL PROTECTED]
Emulator does not support many features of real phone . eg. Bluetooth , camera features , battery usage :) etc etc etc. On Nov 15, 1:10 am, parani kumar [EMAIL PROTECTED] wrote: Hi All, Can anyone list me the limitation of Emulator over the real phone with andriod

[android-beginners] Re: Problems with ListActivity

2008-11-15 Thread [EMAIL PROTECTED]
Yes, show us the code. Though as suggested we both should use ListView. On Nov 14, 10:46 pm, Hans [EMAIL PROTECTED] wrote: Hi,  I also have a similar problem. I managed to have a ListActivity (using contacts) work successfully on its own (as a seperate project) but as soon i tried to merge

[android-beginners] Re: java + android newbie! - help on saving data.

2008-11-14 Thread [EMAIL PROTECTED]
Well in case anyone else has a similar problem to me, I found this pretty handy tutorial: http://www.anddev.org/working_with_files-t115.html On Nov 13, 8:35 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi everyone, First of all I just want to point out that, though I'm not a complete

[android-beginners] Re: Change the View

2008-11-13 Thread [EMAIL PROTECTED]
not there in history stack. So please help me in this problem. Thanks for your replies. On Nov 11, 8:32 am, Mark Murphy [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Hi, I am developing a game. When the game starts, it shows one screen (Splashscreen).I have created xml file for that which contains

[android-beginners] How to make image clickable?

2008-11-13 Thread [EMAIL PROTECTED]
Beginners group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] java + android newbie! - help on saving data.

2008-11-13 Thread [EMAIL PROTECTED]
from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: Change the View

2008-11-13 Thread [EMAIL PROTECTED]
Android Beginners group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: Problems with ListActivity

2008-11-12 Thread [EMAIL PROTECTED]
to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: Map Frustrations

2008-11-11 Thread [EMAIL PROTECTED]
:14 pm, shubaduaaa! [EMAIL PROTECTED] wrote: Oh, gottcha.  I thought android had some sort of proxy setting.  My standard internet connection doesn't use proxy.  Any other Ideas? On Nov 5, 2:52 am, Dennis Wilmsmann [EMAIL PROTECTED] wrote: On 4 Nov., 23:42, shubaduaaa! [EMAIL PROTECTED] wrote

[android-beginners] STL Standard Template Library Support

2008-11-11 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Problems with ListActivity

2008-11-10 Thread [EMAIL PROTECTED]
! --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit

[android-beginners] Re: J2ME apps for Android --J2ME MIDP RUNNER

2008-11-10 Thread [EMAIL PROTECTED]
Hi, I am having this exact same issue! I don't have anywhere else to host my jad and jar files. However the exact same files and urls are working fine for an OTA to a Blackberry. On Nov 10, 7:33 am, And-Rider [EMAIL PROTECTED] wrote: Sorry i typed adb install ab andme.apk when i removed

[android-beginners] 3D game development

2008-11-10 Thread [EMAIL PROTECTED]
. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] How shall I need design my application when the device be rotated?

2008-11-05 Thread [EMAIL PROTECTED]
? --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http

[android-beginners] Cannot compile Android app: Failed to create debug key

2008-11-04 Thread [EMAIL PROTECTED]
!!! --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options

[android-beginners] xr.parse(new InputSource(url.openStream())); gives java.lang.UnsupportedOperationException occurred invoking method.

2008-11-04 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group

[android-beginners] Re: Notepadv3 issue when keyboard is opened

2008-11-03 Thread [EMAIL PROTECTED]
from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: Unlocked G1 issue

2008-10-31 Thread [EMAIL PROTECTED]
contact your provider and ask them to clear any messages you may have outgoing. I had similar trouble on a different phone and resolved it with the above. On Oct 31, 3:16 am, matiasdj [EMAIL PROTECTED] wrote: I'm from Argentina but when visiting NY last week, I bought an unlocked G1. Back then, I

[android-beginners] random

2008-10-30 Thread [EMAIL PROTECTED]
. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] on press event

2008-10-29 Thread [EMAIL PROTECTED]
about it ??? Thank you --~--~-~--~~~---~--~~ 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 [EMAIL

[android-beginners] Re: MediaPlayer video playback problem

2008-10-28 Thread [EMAIL PROTECTED]
); } } On Oct 28, 11:22 am, satheesh kumar [EMAIL PROTECTED] wrote: Post with your piece of codings fully. thanks, guna On Tue, Oct 28, 2008 at 10:55 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, yup I tried adding the call back (did nothing important in the call back methods

[android-beginners] Map applicaiton not working..

2008-10-28 Thread [EMAIL PROTECTED]
this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] displaying a simple MessageBox

2008-10-27 Thread [EMAIL PROTECTED]
--~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group

[android-beginners] Re: Can someone with no programming experience learn to develop apps on Android?

2008-10-27 Thread [EMAIL PROTECTED]
used in Android are somewhat sophisticated to grasp for someone who has absolutely no programming experience. On Oct 26, 11:28 am, Markjm223 [EMAIL PROTECTED] wrote: I just picked up my G1 and I'm very interested in learning how to develop applications. Is this a realistic goal? Can I learn

[android-beginners] Re: MediaPlayer video playback problem

2008-10-27 Thread [EMAIL PROTECTED]
version of the API which would return with the error (-4,0) after trying to prepare too. i looked for the meaning of the error codes every where but I couldn't find anything :( Thanks, [EMAIL PROTECTED] On Oct 28, 4:45 am, guna [EMAIL PROTECTED] wrote: Hi, Did you included addcallback method

[android-beginners] MediaPlayer video playback problem

2008-10-26 Thread [EMAIL PROTECTED]
from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Beginner query CRASH :(

2008-10-25 Thread [EMAIL PROTECTED]
to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] My application tries to replace the Android System

2008-10-25 Thread [EMAIL PROTECTED]
from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: My App Tries To Replace Android System

2008-10-25 Thread [EMAIL PROTECTED]
It's funny, this is exactly what's happening to me right now. I'll let you know if I figure it out. On Oct 22, 9:34 pm, deadscenekid [EMAIL PROTECTED] wrote: For some reason when I package my APK for distribution and I try to install it on my T-Mobile G1. It says Replace Application

[android-beginners] Re: My application tries to replace the Android System

2008-10-25 Thread [EMAIL PROTECTED]
it works perfectly. I guess maybe there's some extra nasty compression going on when downloading over EDGE that breaks it? Brandon Zehm CTO, TSheets.com On Oct 25, 8:46 am, Ed [EMAIL PROTECTED] wrote: Hi, I am just reporting that I have seen the same thing happen. There is a dictionary app

[android-beginners] Java error when running code

2008-10-25 Thread [EMAIL PROTECTED]
Beginners group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: how do you read stuff from sim card? like contact?

2008-10-24 Thread [EMAIL PROTECTED]
o lol. thanks. On Oct 24, 2:51 am, blacktortilla [EMAIL PROTECTED] wrote: hey :) isnt the g1 awesome! anyways you go go to contacts and push the menu button click settings and choose sim contacts importer! thats it. any more help you can just im me through gtalk or email On Oct 23, 9:06 pm

[android-beginners] I have an idea but don't know where to start

2008-10-23 Thread [EMAIL PROTECTED]
be learning. Thanks! --~--~-~--~~~---~--~~ 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 [EMAIL

[android-beginners] A little help?

2008-10-23 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners

[android-beginners] how do you read stuff from sim card? like contact?

2008-10-23 Thread [EMAIL PROTECTED]
thank you. --~--~-~--~~~---~--~~ 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 [EMAIL

[android-beginners] Re: first attempt - ERROR

2008-10-22 Thread [EMAIL PROTECTED]
to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Clockwise or Counter-clockwise fling

2008-10-21 Thread [EMAIL PROTECTED]
-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Unlocked TMobile G1

2008-10-21 Thread [EMAIL PROTECTED]
To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: Emulator starts but HelloAndroid doesn't run

2008-10-17 Thread [EMAIL PROTECTED]
Hi,bsnelson: I've met the same problem as you did. but the different and wired thing is that my SDK is 1.0. Any suggestions? This problem seems to drive me crazy. On 9月24日, 上午6时11分, bsnelson [EMAIL PROTECTED] wrote: I resolved (?) the build error I had in my previous post, and my HelloAndroid

[android-beginners] Re: Emulator starts but HelloAndroid doesn't run

2008-10-17 Thread [EMAIL PROTECTED]
Hi,bsnelson,I've met the same problem as yours,and I am sure that i am using 1.0 SDK. This problem is driving me crazy. here is some information about my enviroment. 1.0 SDK 3.4 eclipse java ee Eclipse plugin version 0.8.0 On 9月24日, 上午10时17分, bsnelson [EMAIL PROTECTED] wrote: On Sep 23, 8:39

[android-beginners] findViewById returns NULL

2008-10-16 Thread [EMAIL PROTECTED]
to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Circular Scroll

2008-10-14 Thread [EMAIL PROTECTED]
to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] use ACTION_WEB_SEARCH

2008-10-13 Thread [EMAIL PROTECTED]
@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Hello Android could not be run!, compilation errors

2008-10-11 Thread [EMAIL PROTECTED]
:) --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more

[android-beginners] Hello Android could not be run!, compilation errors

2008-10-11 Thread [EMAIL PROTECTED]
:) --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options

[android-beginners] Re: Android on existing non G1 phone?

2008-10-10 Thread [EMAIL PROTECTED]
The source code will be available after the release of T-Mobile G1 i.e. after 22nd October On Oct 10, 2:57 am, expone [EMAIL PROTECTED] wrote: Hello toghetter! Is it possible to use android on other htc hardware as T-Mobile G1? And what about downloading android source code? I don't mean

[android-beginners] write a sample app to stream music

2008-10-08 Thread [EMAIL PROTECTED]
. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] how to install a android system

2008-10-03 Thread [EMAIL PROTECTED]
To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] How to pass custom attributes via XML Resource.

2008-10-03 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: T-mobile G1

2008-10-02 Thread [EMAIL PROTECTED]
I can officially say as a tester, that at this time no google docs features work on android. All you can do is view DOC and PDF items as HTML. On Sep 27, 11:07 am, niksbin [EMAIL PROTECTED] wrote: Thanks, Jerry for your advice and insight. I just wanted add a bit of info to your advice

[android-beginners] Re: launching first android application failed

2008-09-30 Thread [EMAIL PROTECTED]
I'm sorry, but I didn't solve up to now...nobdoy here? On 29 Sep., 20:53, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Thomas, i have the same Problem... :) Did you solve your problem? How? Can any body help us? Thanke you in advanced Best Regards HK On 26 Sep., 11:34, [EMAIL

[android-beginners] Re: launching first android application failed

2008-09-30 Thread [EMAIL PROTECTED]
Hey HK Now I solved: 1) Go into the run configurations of your android application 2) Select the tab target 3) Under Additional Emulator Command Line Options you write: - datadir C:\YOUR PATH -- which is writeable... enjoy! Thomas On 29 Sep., 20:53, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote

[android-beginners] Re: Background Image for a (semi-transparent) List

2008-09-30 Thread [EMAIL PROTECTED]
... ;) Thanks very much in advance, Sascha On Sep 30, 4:21 am, Zachary Becker [EMAIL PROTECTED] wrote: Ah ouch, spelt schemas wrong. lol. Thanks for the help. Seems to work now =D On Mon, Sep 29, 2008 at 5:17 PM, David Farler [EMAIL PROTECTED] wrote: Actually, Zach, I pasted everything you sent

[android-beginners] A Problem with RemoteCallbackList.

2008-09-29 Thread [EMAIL PROTECTED]
-beginners@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Background Image for a (semi-transparent) List

2008-09-29 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group

[android-beginners] Re: launching first android application failed

2008-09-29 Thread [EMAIL PROTECTED]
@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: launching first android application failed

2008-09-29 Thread [EMAIL PROTECTED]
Hi Thomas, i have the same Problem... :) Did you solve your problem? How? Can any body help us? Thanke you in advanced Best Regards HK On 26 Sep., 11:34, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: hi everybody! This is my error-message: [2008-09-26 09:29:03 - Emulator] Cannot create data

[android-beginners] Installing Android on an LG KU990

2008-09-28 Thread [EMAIL PROTECTED]
this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Installing Android on an LG KU990

2008-09-28 Thread [EMAIL PROTECTED]
this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Does Android have built-in support for Multi-touch?

2008-09-28 Thread [EMAIL PROTECTED]
To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] AIDL Concept!!!

2008-09-27 Thread [EMAIL PROTECTED]
--~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http

[android-beginners] launching first android application failed

2008-09-26 Thread [EMAIL PROTECTED]
@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

[android-beginners] Re: Android Targets

2008-09-24 Thread [EMAIL PROTECTED]
Does it mean, its possible to flash any phone with android? I have a moto ming which I believe runs on MV-Linux. I wanted to know if I can flash the ROM with Android. Thank You, On Sep 24, 11:00 am, Casey Borders [EMAIL PROTECTED] wrote: Android is not meant to install on those platforms

[android-beginners] Error While Downloading Android Development Toolkit in Eclipse

2008-09-24 Thread [EMAIL PROTECTED]
--~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED] For more options, visit this group at http

[android-beginners] Using Intents to Open Files

2008-09-23 Thread [EMAIL PROTECTED]
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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~--~~~~--~~--~--~---

  1   2   >