Je suis en train de tester une application Hello simple et elle ne démarre pas sur l'émulateur. Il n'y a pas d'erreurs et la console est la suivante:L'application Android ne démarre pas sur l'émulateur
[2010-11-16 21:26:06 - Hello World] ------------------------------
[2010-11-16 21:26:06 - Hello World] Android Launch!
[2010-11-16 21:26:06 - Hello World] adb is running normally.
[2010-11-16 21:26:06 - Hello World] Performing com.hello.HelloWorld.HelloWorld activity launch
[2010-11-16 21:26:09 - Hello World] Launching a new emulator with Virtual Device 'VirtualDevice2.2'
Les lancements de l'émulateur et l'écran apparaît avec la serrure et mon application ne démarre pas.
J'ai essayé de déverrouiller et aller au lanceur pour chercher mon application et il n'est pas là.
Quelqu'un peut m'aider sur celui-ci?
Merci.
code:
package com.hello.HelloWorld;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloWorld extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
// We want to view some very simple text, so we need a TextView
TextView tv = new TextView(this);
// Put some text to the newly created TextVIew
tv.setText("Hello Android");
// Tell our App to display the textView
this.setContentView(tv);
}
}
Manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0" package="com.hello.HelloWorld">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".HelloWorld"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="8" />
</manifest>
Cela ressemble à un problème manifeste. Envie de l'afficher? – phobos51594
Vous pouvez marquer le manifeste (bien sûr n'importe quel xml) en appuyant sur ctrl + k tout en publiant la question, pour éviter d'afficher un blanc. –