To check if you app is actually starting (from the log output everything 
looks good), put the following line in your code.

This should be in the main Activity you have defined for your app in your 
AndroidManifest.xml file (maybe it is called HelloActivity.java?)

in the onCreate() method, enter the following code:

Log.v("Anything-this is your app tag", "This line will be output in the log 
if everything is running fine");

If your app is working correctly, you will see this line output to the 
logfile.  I suspect your Activity isn't correctly configured to start the 
app (maybe your layout file doesn't have anything configured to display?).

Stick with it - Android can seem confusing at first (there are a lot of 
moving parts) - it will all come together eventually!  Good Luck!

-- 
You received this message because you are subscribed to the Google Groups 
"Android Discuss" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/android-discuss/-/7yW9q2bI7BcJ.
To post to this group, send email to [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-discuss?hl=en.

Reply via email to