好吧,伙计们,我有一个问题,我一生都无法弄清楚。我正在使用 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,从 Eclipse 中删除所有 Android 并再次完成所有 SDK 设置,更改我的工作区,创建一个全新的项目,删除 Eclipse 首选项文件,无休止的谷歌搜索,重置和更改设置,我一生都无法弄清楚是什么原因造成的。有任何想法吗?谢谢!