gpt4 book ai didi

Android 应用程序无法在模拟器上启动

转载 作者:太空宇宙 更新时间:2023-11-03 10:31:41 25 4
gpt4 key购买 nike

我正在测试一个简单的 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);
}
}

list :

<?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>

最佳答案

我猜您是在 Windows 7 或 Vista 上进行开发。在任何一种情况下,您的主机文件都将“localhost”映射到“::1”。 Android(从 2.2 开始)不能很好地处理 IPv6,因此您会在日志中进一步发现“协议(protocol)绑定(bind)”失败(不是 logcat 的东西,DDMS IIRC)。

要解决此问题,您需要将 localhost 的定义更改为“127.0.0.1”。 c:\windows\system32\drivers\etc\hosts。将“::1”更改为“127.0.0.1”。 IIRC,你必须另存为一个不同的名字,删除原来的名字,然后重命名回“主机”,没有扩展名。


或者您可能正在使用 HTC 设备而没有他们自己开发的 USB 驱动程序。查看适用于您操作系统的“HTC Synch”应用程序的 HTC 支持页面。

关于Android 应用程序无法在模拟器上启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4199323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com