0

わかりました、私の人生では理解できないという質問があります。私は Eclipse を使用しており、Android ADT プラグインをすべてインストールし、プログラムを Android SDK パスで構成し、追加の SDK パーツ (Google API、SDK プラットフォーム、システム イメージ) をすべてダウンロードしました。ここに私の問題があります: 特定のオブジェクトからメソッドにアクセスしようとすると、Eclipse は通常のようにメソッドの「提案」を提供しません。私はおそらくこれを最もよく説明していないので、問題を説明するスクリーンショットを添付しました.

public class StartingPoint extends Activity {

int counter;
Button add;
Button sub;
TextView display;   


    //putting add.whatever here doesn't work


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_starting_point);
    counter = 0; 
    add = (Button) findViewById(R.id.buttonAdd);
    sub = (Button) findViewById(R.id.buttonSub);
    display = (TextView) findViewById(R.id.textView1);
    add.setOnClickListener(new View.OnClickListener() {

    //putting add.whatever here doesn't show suggestions either.

Eclipseを削除して再インストールし、AndroidをEclipseからすべて削除し、すべてのSDKセットアップを再度実行し、ワークスペースを変更し、まったく新しいプロジェクトを作成し、Eclipse設定ファイルを削除して、動作させるために考えられるすべてのことを試しました。無限のグーグル、設定のリセットと変更、そして私は一生、これの原因を突き止めることができません。何か案は?ありがとう!

4

0 に答える 0