我正在编写这段代码,它显示了错误非静态方法getID()
无法从静态上下文引用。
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
Button greetbutton;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
greetbutton = (Button) findViewById(R.id.greetbutton);
greetbutton.setOnClickListener(this);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
@Override
public void onClick(View v) {
TextView textView = (TextView) findViewById(R.id.textView);
EditText editFreindname = (EditText) findViewById(R.id.editFriendname);
String freindname = editFreindname.getText().toString();
switch (View.getId()) {
case R.id.greetbutton:
textView.setText(getString(R.string.greetstring) + freindname + "!");
break;
default:
break;
}
}
}
5条答案
按热度按时间klsxnrf11#
您需要在switch语句中将
View
替换为v
。View
是类的名称,v
是您尝试比较的变量。ccrfmcuu2#
请将View替换为v。
请尝试使用v.getId()而不是View.getId():)
mefy6pfw3#
getId()
不是静态方法。您必须在View
类别的执行严修上呼叫它。例如,
getId()
的以下3种用法都是有效的(EditText
扩展TextView
,TextView
又扩展View
):hl0ma9xz4#
因为是使用类名来调用的,所以就像调用静态方法一样:
getId()
是不能从View
调用的非静态方法。尝试
代替
希望能帮上忙!
xbp102n05#
你不能用类名来调用这个方法。你应该用v来代替View。