Results 1 to 2 of 2
Thread: Familiar with Android?
- 10-06-2009, 04:44 PM #1
Familiar with Android?
To keep myself entertained I delved into learning to program apps using Android(since I'm now using a Google based phone) and I'm having pretty simple issues.
I'm using Eclipse for my coding with the ADT plugin. I've followed the tutorials for the Hello Android program but it isn't working. Current specs are
Eclipse 1.5(Ganymede)
Android 1.5
Java 1.6
The code looks like this
but for some reason when I launch it hello world doesn't appear in the simulator. I just get the default virtual device with Android... blinking on the screen.Java Code:package com.example.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); } }Liberty has never come from the government.
Liberty has always come from the subjects of government.
The history of liberty is the history of resistance.
The history of liberty is a history of the limitation of governmental power, not the increase of it.
- 10-06-2009, 04:59 PM #2
Never mind. Turns out the virtual device just takes about 10 minutes to load the app >_<
Liberty has never come from the government.
Liberty has always come from the subjects of government.
The history of liberty is the history of resistance.
The history of liberty is a history of the limitation of governmental power, not the increase of it.
Similar Threads
-
add Android platform?
By mysystem in forum NetBeansReplies: 0Last Post: 08-19-2009, 11:24 AM -
im not familiar with boolean in method...
By PureAwesomeness in forum New To JavaReplies: 19Last Post: 02-22-2009, 02:36 AM -
Any android developers left?
By cbyte in forum Jobs OfferedReplies: 0Last Post: 09-25-2008, 10:02 AM -
Android on Eclipse 3.2
By aibtus in forum EclipseReplies: 0Last Post: 04-08-2008, 11:11 AM -
Android Developer Wanted
By androidwx in forum Jobs OfferedReplies: 0Last Post: 12-24-2007, 05:51 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks