1. Switch简介
Switch用于开关按钮。
Switch和ToggleButton稍有区别:ToggleButton是按下弹起的开关,而Switch是左右滑动的开关。
2. Switch示例
创建一个activity,包含1个Switch。
应用层代码
package com.skywang.control;
import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.Switch;
import android.widget.TextView;
public class MySwitch extends Activity {
private Switch mSwitch;
private TextView mViewShow;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.my_switch);
mViewShow = (TextView)findViewById(R.id.tv_show);
// 设置Switch开关
mSwitch = (Switch)findViewById(R.id.switch_def);
mSwitch.setOnCheckedChangeListener(new OnCheckedChangeListener(){
public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {
if (isChecked) {
// 开启switch,设置提示信息
mViewShow.setText(getString(R.string.text_on));
} else {
// 关闭swtich,设置提示信息
mViewShow.setText(getString(R.string.text_off));
}
}
});
}
}
layout代码
<Switch
android:id="@+id/switch_def"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textOn="@string/text_on"
android:textOff="@string/text_off" />
注意:
若提示错误“View requires API level 14 (current min is 10):
那是Switch的最小版本必须是API level14(即Android4.0版本),因为Switch是Android4.0支持的。
解决办法:在manifest中修改最小的sdk版本为14(即Android4.0版本),添加如下内容即可
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="17" />
运行效果:如下图