您好,我正在开发 android 应用程序,我的应用程序上有几个单选按钮,当我单击单选按钮时,它可以执行我想要的操作,即显示网页,但是当我单击另一个单选按钮时,它充当检查盒子。这是我的代码:
RadioButton webss = (RadioButton) findViewById (R.id.studentsite);
RadioButton webst = (RadioButton) findViewById (R.id.staffsite);
RadioButton webbaak = (RadioButton) findViewById (R.id.baak);
webss.setOnClickListener(new RadioButton.OnClickListener()
{
public void onClick(View v)
{
callintent(v);
}
});
webst.setOnClickListener(new RadioButton.OnClickListener()
{
public void onClick(View v)
{
callintent(v);
}
});
webbaak.setOnClickListener(new RadioButton.OnClickListener()
{
public void onClick (View v)
{
callintent(v);
}
});
public void callintent(View view)
{
Intent intent = null;
switch (view.getId())
{
case R.id.studentsite:
intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://studentsite.gunadarma.ac.id"));
startActivity(intent);
break;
case R.id.staffsite:
intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://staffsite.gunadarma.ac.id"));
startActivity(intent);
break;
case R.id.baak:
intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://baak.gunadarma.ac.id"));
startActivity(intent);
break;
default:
break;
}
你有什么可以修复这些代码吗?谢谢。