有谁知道如何通过代码设置开关位置?例如,我想在按下按钮时将所有开关设置为关闭...无法弄明白。
答案 0 :(得分:1)
您可以通过axml中的id属性访问Switch(例如:android:id =&#34; @ + id / switch1&#34;例如),然后设置 Checked 属性:< / p>
Button button = FindViewById<Button>(Resource.Id.myButton);
Switch switchControl = FindViewById<Switch>(Resource.Id.switch1);
button.Click += delegate {
switchControl.Checked = true; // or false
};