この時点までは問題なく動作していた Android プログラミングを試してみます。次のエラーが表示されます。
Activity cannot be resolved to a type
The import Activity cannot be resolved
次のクラスの上位 2 つのインポート (アクティビティとバンドル):
package com.example.sqlite;
import android.app.Activity;
import android.os.Bundle;
import android.widget.Button;
import android.widget.EditText;
public class Input extends Activity {
private EditText txtTitle;
private EditText txtURL;
private Button btnOK;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.input);
txtTitle = (EditText) findViewById(R.id.editText1);
txtURL = (EditText) findViewById(R.id.editText2);
btnOK = (Button) findViewById(R.id.button1);
}
}
これらのインポートを自動的に追加する標準のctrl + shift + Oを実行しましたが、エラーは残ります。また、何度も再構築しましたが、効果はありませんでした。
ここで私が間違っていることを誰かが見ることができますか?