switch开关

Android4.0之后引入了switch开关

项目需要,今天学习了一下。

<strong> </strong> <Switch
        android:id="@+id/alarm_switch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textOff="已关闭"
        android:textOn="已开启" />

alarm_Switch.setOnCheckedChangeListener(new OnCheckedChangeListener() {

			@Override
			public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
				// TODO Auto-generated method stub
				if (isChecked) {
					//打开的操作
				} else {
					//关闭操作
				}
			}
		});


当然也可以自定义View实现更炫酷的开关效果。。。这里暂时不演示了

你可能感兴趣的:(switch开关)