导入android.widget.TextView无法解析

时间:2013-07-08 18:39:03

标签: java android

以下是代码:

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;
    }

}

2 个答案:

答案 0 :(得分:0)

转到项目>日食清洁。

答案 1 :(得分:0)

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

我希望这会有所帮助。