gpt4 book ai didi

java - 尝试在 'id in R' 中添加符号时出现 IDE 错误

转载 作者:行者123 更新时间:2023-12-01 22:08:33 24 4
gpt4 key购买 nike

R.id上的“工具栏”、“名称”和“按”都是红色的,找不到。我已重新安装该应用程序。

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
mNameText = (EditText)findViewById(R.id.name);
Button button = (Button) findViewById(R.id.press);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
handleButtonClick();
}
});
}

private void setSupportActionBar(Toolbar toolbar) {
}
private void handleButtonClick() {
mNameText.setText("The button was clicked");
}

当我尝试在“id in R”中为它们创建字段时,出现 IDE 错误。

最佳答案

R 是您构建应用程序时生成的类。您不能直接在其中添加字段。分享您的完整 Activity 及其 XML 文件,以便我们为您提供更多帮助。

关于java - 尝试在 'id in R' 中添加符号时出现 IDE 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58674933/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com