-1

コードは次のとおりです。

package com.example.sample;

import android.os.Bundle;
import android.widget.TextView; // (errorL:" the import android.widget.TextView cannot resolve")
import android.app.Activity;
import android.view.Menu;

public class PlayerActivity extends Activity {
    int count=0;
    TextView // error:"syntax error on token "TextView",delete this tokon)
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_player);
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.player, menu);
        return true;
    }

}
4

2 に答える 2

0

Project > Clean on Eclipse に移動します。

于 2013-07-08T18:44:42.097 に答える
0

時々、日食があなたにそれをします。まず、Eclipse を終了して再起動してみてください。これで問題が解決するはずです。Project->clean projectを試さない場合。それでも動作しない場合は、R.java ファイルを台無しにしていないことを確認してください。よくわからない場合は、新しいプロジェクトを作成してコピーし、コードを貼り付けてください。

これが役立つことを願っています。

于 2013-07-08T18:56:52.537 に答える