所以我一直在阅读创建 Android 应用程序的初学者指南(http://developer.android.com/training/basics/firstapp/index.html)。除了我不断出错的一步之外,它运行良好。
MainActivity.java 对我不起作用。我在 3 个不同的地方遇到各种错误。
这就是我的代码的样子:
package com.fredde.myfirstapp;
public class MainActivity extends Activity {
public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";
import android.app.Activity;enter code here
import android.content.Intent;
import android.view.View;
import android.widget.EditText;
import android.view.View;
/** Called when the user clicks the Send button */
public void sendMessage(View view) {
Intent intent = new Intent(this, DisplayMessageActivity.class);
EditText editText = (EditText) findViewById(R.id.edit_message);
String message = editText.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
}
所以我希望通过本指南的人可以帮助我,或者只是一个尽管没有完成这个特定项目但可以看到问题的人。提前致谢!
放轻松,我是一个完整的初学者。