My first Android app attempt
This is a discussion on My first Android app attempt within the Android App Developers forums, part of the Droid Apps category; I'm trying to run a very simple (my first) Android app in an emulator I've set up, but my app doesn't display within the emulator. ...
-
My first Android app attempt
I'm trying to run a very simple (my first) Android app in an emulator I've set up, but my app doesn't display within the emulator. I'm expecting to see (code below) a TextView with some Text assigned to it.
All I see is a black "honeycomb" background in the emulator (which looks like a "DOS box" or Command prompt) with the time (5 hours in the future), date, and "Charging (50%)"
I'm using an AVD set up to use a version 3.2 emulator. I've got that (Andorid 3.2 SDK) and Java 7 installed.
Here is what is contained in my Eclipse tabs:
Console:
[2011-07-29 02:16:39 - YeauxDudimus] ------------------------------
[2011-07-29 02:16:39 - YeauxDudimus] Android Launch!
[2011-07-29 02:16:39 - YeauxDudimus] adb is running normally.
[2011-07-29 02:16:39 - YeauxDudimus] Performing com.bobas.YeauxDudimusActivity activity launch
Error Log:
While loading class "com.android.ide.eclipse.adt.ToolsLocator", thread "Thread[Worker-2,5,main]" timed out waiting (5016ms) for thread "Thread
Problems:
None
Code:
Code:
package com.bobas;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class YeauxDudimusActivity 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("Yeaux, Dudimus");
setContentView(tv);
setContentView(R.layout.main);
}
}
-
-
Have you tried launching the emulator separately first using Android SDK and AVD Manager? Also, can you create a new Android project and have it run on the emulator?
I don't see anything in your code that would cause a problem, however there is a bug that will give you unexpected results:
Code:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("Yeaux, Dudimus");
setContentView(tv);
setContentView(R.layout.main);
}
You are calling setContentView twice. You either need to remove:
Code:
setContentView(R.layout.main);
or add the TextView to your main.xml layout file.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
Similar Threads
-
By DroiDTalenT in forum Droid X General Discussions
Replies: 2
Last Post: 09-28-2010, 06:42 PM
-
By YankInDaSouth in forum Droid Themes
Replies: 0
Last Post: 09-25-2010, 12:08 PM
-
By sandfreak in forum Rescue Squad Help
Replies: 4
Last Post: 05-27-2010, 06:46 PM
-
By meganimel in forum Hacking Help
Replies: 6
Last Post: 05-23-2010, 12:47 PM
-
By BhamItGeek in forum Droid Themes
Replies: 0
Last Post: 02-20-2010, 10:40 PM
Search tags for this page
android 3.2 emulator
,
android firstclass app
,
android sdk 3.2 droid x emulator
,
does firstclass email have an android app
,
first class android app
,
first class app for android
,
first-class app for android
,
firstclass android app
,
firstclass app
,
firstclass email android
,
firstclass email android app
,
is there a firstclass app for droids?
,
launch date firstclass app for android
,
my apps
,
my first android app
Click on a term to search our site for related topics.