我正在做一本初学者的android入门书,代码看起来很简单。但是,它无法运行。当我尝试运行它时,eclipse会崩溃。
这是我的java代码:
package com.example.gamebeginner;
import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity implements View.OnClickListener {
Button button;
int touchCount;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
button = new Button(this);
button.setText("Touch me!");
button.setOnClickListener(this);
setContentView(button);
}
public void onClick(View v){
touchCount++;
button.setText("Touched me " + touchCount + " times(s)");
}
}
activity.main xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world" />
</RelativeLayout>
清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gamebeginner"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="14" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:debuggable="true" >
<activity
android:name="com.example.gamebeginner.MainActivity"
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>
我正在使用jdk 1.6版。任何帮助将不胜感激。
答案 0 :(得分:4)
确保您的设备已连接且工作正常。
还尝试杀死并重新启动adb守护程序。
在命令提示符处 adb kill-server
然后adb start-server
。如果您的路径中没有adb
,则需要引用adb
的完整路径或在包含adb
的目录中执行命令。
断开并重新连接设备解决了这个问题。
答案 1 :(得分:1)
如果您的错误消息(在logcat中,对吗?)是java se binary is not responding
,我会冒昧地说你以某种方式以错误的方式生成代码。您使用Eclipse或IntelliJ构建您的应用程序吗?您正在使用的项目类型是什么 - Java应用程序或Android应用程序?
答案 2 :(得分:0)
首先添加setContentView并在View
之后