gpt4 book ai didi

java - android 代码在使用 switch 语句时似乎出现错误

转载 作者:行者123 更新时间:2023-12-01 15:49:39 24 4
gpt4 key购买 nike

我试图对单选按钮使用 switch 语句,但运行时出现错误。有人可以帮我吗?我已经在下面粘贴了我的 Android 代码。如果您知道答案,请帮忙。非常感谢。

package apt.tutorial;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.RadioGroup;
import android.R;

public class LunchtimeActivity extends Activity {

Restaurant r=new Restaurant();

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button save=(Button)findViewById(R.id.button1);
save.setOnClickListener(onSave);
}

private View.OnClickListener onSave=new View.OnClickListener() {
public void onClick(View v) {
EditText name=(EditText)findViewById(R.id.text1);
EditText address=(EditText)findViewById(R.id.text2);

r.setName(name.getText().toString());
r.setAddress(address.getText().toString());

RadioGroup types=(RadioGroup)findViewById(R.id.types);

switch (types.GetCheckedRadiobuttonId()) {
case R.id.Sit-Down:
r.setType("Sit_Down");
break;
case R.id.Take-Out:
r.setType("Take_Out");
break;
case R.id.Delivery:
r.setType("Delivery");
break;
}
}
};
}

最佳答案

我可以看到以下问题:

  1. 您导入的 android.R 类显然没有这些字段(例如 Sit-Down 等
  2. 您正在调用不存在的 RadioGroup 方法,从 GetCheckedRadiobuttonId 更改为 getCheckedRadioButtonId
  3. Id 只能包含 Java 变量名称中允许的字符,因此 Sit-Down 不是有效的标识符。

关于java - android 代码在使用 switch 语句时似乎出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6373141/

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