我正在测试一个简单的hello应用程序,它不会在模拟器上启动。没有错误,控制台是这样的:
[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'
模拟器启动,屏幕显示锁定,我的应用程序无法启动 试图解锁并去发射器寻找我的应用程序,它不在那里 任何人都可以帮我这个吗? 感谢。
代码:
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);
}
}
清单:
<?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>
答案 0 :(得分:2)
我猜你正在开发Windows 7或Vista。在任何一种情况下,您的hosts文件都将“localhost”映射到“:: 1”。 Android(从2.2开始)不能很好地处理IPv6,因此您会在日志中找到“协议绑定”故障(而不是logcat内容,DDMS IIRC)。
要解决此问题,您需要将localhost的定义更改为“127.0.0.1”。 C:\ WINDOWS \ SYSTEM32 \ DRIVERS \ ETC \主机。将“:: 1”更改为“127.0.0.1”。 IIRC,您必须将其保存为其他名称,删除原始名称,然后重命名为“主机”,没有扩展名。
或者您可能在没有自己的USB驱动程序的情况下使用HTC设备。查看HTC针对您的操作系统的“HTC Synch”应用程序的支持页面。