gpt4 book ai didi

java - 在显式 Intent 创建中使用 "this"关键字时出错

转载 作者:行者123 更新时间:2023-12-01 22:05:55 25 4
gpt4 key购买 nike

我正在开发一些应用程序,在启动器屏幕中,如果我们选中单选按钮,它应该重定向到登录 Activity 。

mainactivity.java 类中,在为隐式 Intent 类创建对象期间,使用 this 关键字获取当前上下文显示错误。这是什么原因呢?我们还可以使用什么来获取 Intent 对象的上下文?

我在此处包含我的代码。

public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final RadioGroup radiogroup = (RadioGroup) findViewById(R.id.radiogroup);
radiogroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {

@Override
public void onCheckedChanged(RadioGroup group, int checkedId)
{
RadioButton checkedRadioButton = (RadioButton) findViewById(checkedId);
int comp = checkedRadioButton.getId();

if(comp==(R.id.Vitbutton))
Intent i = new Intent(this ,LoginActivity.class);
startActivity(i);

}
}
);
}

最佳答案

更改:

Intent i = new Intent(this ,LoginActivity.class);

至:

Intent i = new Intent(MainActivity.this ,LoginActivity.class);

关于java - 在显式 Intent 创建中使用 "this"关键字时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32798170/

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