ToggleButton主要用于开关变换
xml属性
android:textOff="bye bye" 关的时候显示文本内容
android:textOn="hello" 关的时候显示文本内容
android:checked = "false" 设置当前的状态
<ToggleButton android:id="@+id/toggleButton" android:layout_width="match_parent" android:layout_height="wrap_content" android:textOn="hello" android:textOff="bye bye" android:checked="false" android:text="ToggleButton" />