[android-beginners] Nike shox NZ TN R3 R4

2008-08-18 Thread I like NBA
Dress casual leather ladies guys shoes Nike airmax 90 97 180 360 2000 2003 Nike shox NZ TN R3 R4 Nike rift nike zoom nike Jordan Nike kobe nike air jordan Nike dunk nike air force www zhengtrade com AF1 Puma shoes sports shoes jogging shoes Adidas 35th adidas colour adidas super star shoes

[android-beginners] Accessing Network

2008-08-18 Thread janaarth
Hi to all, Anyone give example code for get connection from the network server. --~--~-~--~~~---~--~~ 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] Android emulator crashing

2008-08-18 Thread Shweta
Hey, I am trying to deploy an mobile application written in cpp to Android emulator .I got most of the stuff working and with no errors .I get and icon related to my application but when I click on it it crashes.Is there a good way to figure what the problem is? As eclipse doesnot have a good way

[android-beginners] Activity not found when starting a new activity?

2008-08-18 Thread august
Hello everyone, I started to work on my app., but I am having problems switching to a new activity so I decided just to experiment with that. I am having problems. Here is my AndroidManifest - manifest xmlns:android=http://schemas.android.com/apk/res/android; package=com.v.t - application -

[android-beginners] Wierd trouble installing SDK on Eclipse

2008-08-18 Thread quasist
I'm installing google SDK with Eclipse (3.4.0) I downloaded and unpacked SDK version m5_rc15_windows At installing when It comes to step put your path to android SDK, Eclipse says: This version of ADT requires android SDK version 0.9r_1. Current version m5_rc15. Update your SDK to the latest

[android-beginners] Re: Activity not found when starting a new activity?

2008-08-18 Thread Mark Murphy
android.content.Intent intent = new android.content.Intent(); intent.setClassName(com.v.t, Jim); Try using new Intent(this, Jim.class); instead. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 1.1 Published!

[android-beginners] Re: Accessing Network

2008-08-18 Thread Mark Murphy
Anyone give example code for get connection from the network server. What is a network server? If you mean a Web server, Android includes the Apache Jakarta Commons HttpClient library. You can find tutorials on that here: http://hc.apache.org/httpclient-3.x/tutorial.html

[android-beginners] Re: Activity not found when starting a new activity?

2008-08-18 Thread august
Thank-you! It worked perfectly. I also tried out using the two string version, but I did this instead intent.setClassName(com.v.t,com.v.t.Jim); And it works as well. Thanks for the help! On Aug 18, 2:19 pm, Mark Murphy [EMAIL PROTECTED] wrote:         android.content.Intent intent = new

[android-beginners] Contacts.PhonesColumns.OTHER_TYPE

2008-08-18 Thread 3,14
It is not clear how can the constant Contacts.PhonesColumns.OTHER_TYPE be used? There is no description in the docs :( There is no samples :( It looks like that it used to store some additional data for the contacts. I wonder if it can be used to extend android contacts with new fields. For

[android-beginners] Re: Wierd trouble installing SDK on Eclipse

2008-08-18 Thread szeldon
It's because of the fact that there's new SDK. Download it from Android project site. On Aug 18, 7:57 pm, quasist [EMAIL PROTECTED] wrote: I'm installing google SDK with Eclipse (3.4.0) I downloaded and unpacked SDK version m5_rc15_windows At installing when It comes to step put your path to

[android-beginners] Can't find root directory of the SDK

2008-08-18 Thread demo1987
Hello, When I installed the plugin through the normal install procedure (downloaded everything through Eclipse) the install procedure asked me to set the SDK root directory. But when i accessed the Windows - Preferences - Android screen, it says to set the SDK root directory. But I can't find it

[android-beginners] Re: Can't find root directory of the SDK

2008-08-18 Thread Justin (Google Employee)
You need to download the SDK from http://code.google.com/android/download.html Cheers, Justin Android Team @ Google. On Aug 18, 2:25 pm, demo1987 [EMAIL PROTECTED] wrote: Hello, When I installed the plugin through the normal install procedure (downloaded everything through Eclipse) the

[android-beginners] Re: Can't find root directory of the SDK

2008-08-18 Thread demo1987
So if I'm correct, to use the SDK I need to download the SDK AND i need the plugin? Am I correct? On 18 aug, 23:31, Justin (Google Employee) [EMAIL PROTECTED] wrote: You need to download the SDK fromhttp://code.google.com/android/download.html Cheers, Justin Android Team @ Google. On Aug

[android-beginners] Re: Can't find root directory of the SDK

2008-08-18 Thread Justin (Google Employee)
Yes On Aug 18, 2:35 pm, demo1987 [EMAIL PROTECTED] wrote: So if I'm correct, to use the SDK I need to download the SDK AND i need the plugin? Am I correct? On 18 aug, 23:31, Justin (Google Employee) [EMAIL PROTECTED] wrote: You need to download the SDK

[android-beginners] TelephonyManager

2008-08-18 Thread Raymond Rodgers
Hi folks, Although I'm new to Android development, I'm not new to Java development and I understand that not all classes are meant to be directly instantiated. I'm trying to write a class that derives from PhoneStateListener, and I need to tell the TelephonyManager that my class will be

[android-beginners] Re: TelephonyManager

2008-08-18 Thread Raymond Rodgers
Thank you, that worked perfectly! Now I just need to figure out everything else about my app... ;) Thanks again! Raymond Megha Joshi wrote: you can use: TelephonyManager test = (TelephonyManager)getSystemService(TELEPHONY_SERVICE); On Mon, Aug 18, 2008 at 4:57 PM, Raymond Rodgers [EMAIL