そのため、Android アプリケーションを作成するための初心者向けガイド ( http://developer.android.com/training/basics/firstapp/index.html ) を調べてきました。エラーが発生し続ける1つのステップを除いて、正常に機能しました。
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);
}
したがって、このガイドを読んだことがある人、またはこの特定のプロジェクトを行っていないにもかかわらず何が問題なのかを理解できる人が助けてくれることを願っています. 前もって感謝します!
私は完全な初心者です。