please Click here to see the problematic image
我是android的初学者,我需要一些想法来解决我的疑问,我的疑问是,当一个开关按钮处于活动状态时,另外两个开关按钮应保持不活动或禁用状态。我们如何执行此活动,有人可以向我提供任何想法。 ..?我刚刚插入了切换按钮,我应该如何执行此任务。
我只是在android编程中使用了相对布局
我的源代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
button=(Button)findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
openThird();
}
});
btnswitch=(Switch)findViewById(R.id.switch1);
btnswitch=(Switch)findViewById(R.id.switch2);
btnswitch=(Switch)findViewById(R.id.switch3);
}
public void openThird()
{
Intent toy=new Intent(this,Third.class);
startActivity(toy);
}
为此指导我。
答案 0 :(得分:0)
首先,您将三个不同的gui元素(您的Switch
es)分配给Activity
的相同java变量/ class属性,这意味着只有最后一个定义可以在您的代码。
不要
btnswitch = (Switch)findViewById(R.id.switch1);
btnswitch = (Switch)findViewById(R.id.switch2);
btnswitch = (Switch)findViewById(R.id.switch3);
相反,请为您的活动提供更多的类属性,以分别处理每个Switch
btnswitchOne = (Switch)findViewById(R.id.switch1);
btnswitchTwo = (Switch)findViewById(R.id.switch2);
btnswitchThree = (Switch)findViewById(R.id.switch3);
然后向其添加侦听器(仅第一个示例):
btnSwitchOne.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// do your desired action on switch on/off
if (isChecked) {
// if the first switch gets checked, uncheck the others
btnSwitchTwo.setChecked(false);
btnSwitchThree.setChecked(false);
} else {
/* since you are switching them off by code depending on other's state,
* either skip the else-block entirely or print some debug messages
*/
}
}
});