-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

有时日食会对你这样做。首先,尝试退出eclipse并重新启动它,它应该可以解决您的问题。如果它不尝试 Project->clean 项目。如果它仍然不起作用,请确保您没有弄乱 R.java 文件。如果您不确定,只需创建新项目并复制、粘贴您的代码。

我希望这有帮助。

于 2013-07-08T18:56:52.537 回答
0

在 Eclipse 上转到项目 > 清理。

于 2013-07-08T18:44:42.097 回答