android 错误:(56,21)错误:不能从静态上下文引用非静态方法getId()

xam8gpfp  于 2022-12-09  发布在  Android
关注(0)|答案(5)|浏览(158)

我正在编写这段代码,它显示了错误非静态方法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;
    }

}
}
klsxnrf1

klsxnrf11#

您需要在switch语句中将View替换为vView是类的名称,v是您尝试比较的变量。

ccrfmcuu

ccrfmcuu2#

请将View替换为v。
请尝试使用v.getId()而不是View.getId():)

mefy6pfw

mefy6pfw3#

getId()不是静态方法。您必须在View类别的执行严修上呼叫它。
例如,getId()的以下3种用法都是有效的(EditText扩展TextViewTextView又扩展View):

editFreindname.getId()
freindname.getId()
v.getId()
hl0ma9xz

hl0ma9xz4#

因为是使用类名来调用的,所以就像调用静态方法一样:

View.getId();

getId()是不能从View调用的非静态方法。
尝试

switch (v.getId()) {

代替

switch (View.getId()) {

希望能帮上忙!

xbp102n0

xbp102n05#

你不能用类名来调用这个方法。你应该用v来代替View。

switch (v.getId()) {
    case R.id.greetbutton:
        textView.setText(getString(R.string.greetstring) + freindname + "!");
        break;
    default:
        break;
    }

相关问题