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" />

 

posted on 2021-03-17 00:01  python我的最爱  阅读(366)  评论(0编辑  收藏  举报