No. ---------------------------------------------------------------------- There are only 10 types of people in the world... Those who know binary and those who don't. ----------------------------------------------------------------------
On Sat, Jan 2, 2010 at 2:02 PM, Cristian Andrei <[email protected]>wrote: > I do not own an Android device, yet. Is the real thing this slow too? > > On Dec 24 2009, 2:46 pm, MWarren <[email protected]> wrote: > > I had went around with this for sometime my first day too. It will > > show up however keep in mind it is basically starting an operating > > system on your computer. It takes alot of resources to get it started > > and a few minutes. Once the Android text clears you will see the > > unlock slider thenhomescreen and then your app. I usually run my > > app to get it started from my last compile to give it time while I > > continue development and will leave it open for the rest of the day, > > and sometimes 2. > > > > Matrix > > > > On Dec 23, 10:42 am, Chris S <[email protected]> wrote: > > > > > Has anyone figured this out yet? It's a bit depressing something as > > > simple as Android's hello world tutorial doesn't work. > > > > > I'm running this under Eclipse 3.5 on Ubuntu. The fancy emulator > > > window pops up, showing a reddish phone displaying the "Android" logo, > > > and that's it. My console seems to show a red message (presumably an > > > error?): > > > > > [2009-12-23 10:34:19 - HelloAndroid]Android Launch! > > > [2009-12-23 10:34:19 - HelloAndroid]adb is running normally. > > > [2009-12-23 10:34:19 - HelloAndroid]Performing > > > com.example.helloandroid.HelloAndroid activity launch > > > [2009-12-23 10:34:19 - HelloAndroid]Automatic Target Mode: launching > > > new emulator with compatible AVD 'my_avd' > > > [2009-12-23 10:34:19 - HelloAndroid]Launching a new emulator with > > > Virtual Device 'my_avd' > > > [2009-12-23 10:34:19 - HelloAndroid]New emulator found: emulator-5554 > > > [2009-12-23 10:34:19 - HelloAndroid]WaitingforHOME > > > ('android.process.acore') to belaunched... > > > [2009-12-23 10:34:20 - Emulator]emulator: emulator window was out of > > > view and was recentred > > > [2009-12-23 10:34:20 - Emulator] > > > [2009-12-23 10:34:49 - HelloAndroid]emulator-5554 disconnected! > > > Cancelling 'com.example.helloandroid.HelloAndroid activity launch'! > > > > > Am I missing something? > > > > > Chris > > > > > On Dec 22, 9:14 pm, Dayong Sun <[email protected]> wrote: > > > > > > The emulator is VERY slow. Wait for 10 minutes and then you will see > it. > > > > > > On Fri, Dec 18, 2009 at 4:49 AM, Amit Patel <[email protected]> > wrote: > > > > > I am facing same problem as does cybereality > > > > > > > On Nov 16, 6:42 am, cybereality <[email protected]> wrote: > > > > >> I am having the same problem on Eclipse. The 'hello, android' text > > > > >> does not show up, even though the program compiles and I followed > > > > >> every instruction exactly. The emulator pops up but just shows the > > > > >> default "android" text and nothing happens. Can anyone help? > > > > > > >> On Nov 11, 8:17 pm, Bossco <[email protected]> wrote: > > > > > > >> > Hello, I'm using NetBeans, and I have the same problem, > theemulator > > > > >> > does not show the text. > > > > > > >> > I got this error: > > > > > > >> > Device's package manager not ready to install new packages > > > > > > >> > On Nov 5, 9:59 am, Walker Rowe <[email protected]> wrote: > > > > > > >> > > Hi, > > > > > > >> > > Following the tutorial I wrote the hello world application > shown below > > > > >> > > and eclipse shows the console messages shown at the bottom. > Problem > > > > >> > > is theemulatorlaunched just has normal graphical display and > does > > > > >> > > not show the message "Hello, Android". > > > > > > >> > > package com.rosewoodhillfarm.helloandroid; > > > > > > >> > > import android.app.Activity; > > > > >> > > import android.os.Bundle; > > > > >> > > import android.widget.TextView; > > > > > > >> > > public class HelloAndroid extends Activity { > > > > >> > > /** Called when the activity is first created. */ > > > > >> > > @Override > > > > >> > > public void onCreate(Bundle savedInstanceState) { > > > > >> > > super.onCreate(savedInstanceState); > > > > >> > > TextView tv = new TextView(this); > > > > >> > > tv.setText("Hello, Android"); > > > > >> > > setContentView(tv); > > > > >> > > } > > > > > > >> > > } > > > > > > >> > > [2009-11-05 12:37:57 - Android > Project]------------------------------ > > > > >> > > [2009-11-05 12:37:57 - Android Project]Android Launch! > > > > >> > > [2009-11-05 12:37:57 - Android Project]adb is running > normally. > > > > >> > > [2009-11-05 12:37:57 - Android Project]Performing > > > > >> > > com.rosewoodhillfarm.helloandroid.HelloAndroid activity launch > > > > >> > > [2009-11-05 12:37:57 - Android Project]Automatic Target Mode: > > > > >> > > Preferred AVD 'my_avd' is not available. Launching > newemulator. > > > > >> > > [2009-11-05 12:37:57 - Android Project]Launching a > newemulatorwith > > > > >> > > Virtual Device 'my_avd' > > > > >> > > [2009-11-05 12:38:01 - Android Project]Newemulatorfound: > > > > >> > >emulator-5554 > > > > >> > > [2009-11-05 12:38:01 - Android Project]WaitingforHOME > > > > >> > > ('android.process.acore') to belaunched... > > > > >> > > [2009-11-05 12:38:34 - Android Project]HOMEis up on device > > > > >> > > 'emulator-5554' > > > > >> > > [2009-11-05 12:38:34 - Android Project]Uploading Android > Project.apk > > > > >> > > onto device 'emulator-5554' > > > > >> > > [2009-11-05 12:38:34 - Android Project]Installing Android > > > > >> > > Project.apk... > > > > >> > > [2009-11-05 12:38:48 - Android Project]Success! > > > > >> > > [2009-11-05 12:38:48 - Android Project]Starting activity > > > > >> > > com.rosewoodhillfarm.helloandroid.HelloAndroid on device > > > > >> > > [2009-11-05 12:38:56 - Android Project]ActivityManager: > Starting: > > > > >> > > Intent { cmp=com.rosewoodhillfarm.helloandroid/.HelloAndroid } > > > > > > > -- > > > > > You received this message because you are subscribed to the Google > > > > > Groups "Android Beginners" group. > > > > > > > NEW! Try asking and tagging your question on Stack Overflow at > > > > >http://stackoverflow.com/questions/tagged/android > > > > > > > To unsubscribe from this group, send email to > > > > > [email protected]<android-beginners%[email protected]> > > > > > For more options, visit this group at > > > > >http://groups.google.com/group/android-beginners?hl=en-Hide quoted > text - > > > > > - Show quoted text - > > -- > You received this message because you are subscribed to the Google > Groups "Android Beginners" group. > > NEW! Try asking and tagging your question on Stack Overflow at > http://stackoverflow.com/questions/tagged/android > > To unsubscribe from this group, send email to > [email protected]<android-beginners%[email protected]> > For more options, visit this group at > http://groups.google.com/group/android-beginners?hl=en > -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android 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

