编辑:已解决我必须等待大审
所以我按照简单的“Hello Android”教程: http://developer.android.com/resources/tutorials/hello-world.html
让所有东西都设置得很好.....东西可以工作但是当我去实际运行它.....它只是在我的虚拟设备中说“Android_”....
我尝试在2.1 2.2 2.3.1和2.3.3 VD上运行它并得到相同的东西?
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloAndroid 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("Hello, Android");
setContentView(tv);
}
}
有什么想法吗?我第一次进入android是一个失败的人; _;
PIC:
更大:http://img.photobucket.com/albums/v720/bmw_pyro/Untitled-2.png
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.helloandroid"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="10" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".HelloAndroid"
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>
</manifest>
答案 0 :(得分:1)
“Android _”是第一个加载模拟器启动画面,所以你说你卡在那里?如果是这种情况,则与您的代码无关。