我对使用eclipse安卓插件并不是全新的,但我是从头开始编写项目的新手。所以我去Android开发者网站关注'Hello World'教程。
当我运行程序时,模拟器会显示一个屏幕 不幸的是,你好,Android已经停止工作了。 我的代码是:
HelloAndroid.Java
package daniel.android.projects;
import android.app.Activity;
import android.os.Bundle;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Object o = null;
o.toString();
setContentView(R.layout.main);
}
}
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/hello"/>
的strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello, Android! I am a string resource!</string>
<string name="app_name">Hello, Android</string>
</resources>
的Manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="daniel.android.projects"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".AndroidTesterActivity"
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)
您有一个空指针例外,您将null
分配给o
,然后在其上调用toString()
:
Object o = null;
o.toString();
无论如何,它似乎在你的应用程序中没有任何用处,它不应该存在。
另外,看一下你的代码,你创建了HelloAndroid
类,但是在你明确表示
android:name=".AndroidTesterActivity"
应该是
android:name=".HelloAndroid"