我是Java的新手,在没有运气的情况下四处寻找答案。我试图从另一个方法中调用一个没有任何运气的方法。
我在受保护的onCreate中有这个
final RelativeLayout rlayout = (RelativeLayout) findViewById(R.id.mainlayout);
rlayout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mLevelTextView = (TextView) findViewById(R.id.level);
mLevelTextView.setText(Integer.toString(clickCounter));
yellowLevelText = (TextView) findViewById(R.id.yellowLevel);
yellowLevelText.setText(Integer.toString((clickCounter - 1) / 256 + 1));
//this is what I am trying to call but get an error
savedInfo();
rlayout.setBackgroundColor(Color.parseColor("#" + decToHex(colorNumber)));
colorNumber = new Integer(colorNumber - 1);
clickCounter = new Integer(clickCounter + 1);
}
});
这是我试图调用的代码末尾的方法:
public void saveInfo(View view) {
SharedPreferences sharedPref = getSharedPreferences("score",
Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPref.edit();
editor.putInt("totalScore", clickCounter);
editor.putInt("yellowScore", yellowCounter);
editor.putInt("magentaScore", magentaCounter);
editor.putInt("cyanScore", cyanCounter);
editor.apply();
}
我得到的错误是这样的: 错误:类启动时的方法saveInfo不能应用于给定的类型; 必需:查看 发现:没有争论 原因:实际和正式的参数列表长度不同
任何有经验的人都能看到这里可能出现的问题吗?
答案 0 :(得分:1)
您正试图致电saveInfo()
。您需要致电saveInfo(someView)
。
虽然实际上,您的saveInfo
方法并未对该参数执行任何操作,因此请将其删除。方法签名应为:
public void saveInfo() {
答案 1 :(得分:0)
你执行方法saveInfo
没有任何参数。您必须传递View
答案 2 :(得分:0)
将点击视图传递给方法.. v
@Override
public void onClick(View v) {
mLevelTextView = (TextView) findViewById(R.id.level);
mLevelTextView.setText(Integer.toString(clickCounter));
yellowLevelText = (TextView) findViewById(R.id.yellowLevel);
yellowLevelText.setText(Integer.toString((clickCounter - 1) / 256 + 1));
//this is what I am trying to call but get an error
savedInfo(v);
rlayout.setBackgroundColor(Color.parseColor("#" + decToHex(colorNumber)));
colorNumber = new Integer(colorNumber - 1);
clickCounter = new Integer(clickCounter + 1);
}
});