ToggleButton與Switch都是開關(guān)按鈕,ToggleButton出現(xiàn)在比較早的版本中,Switch是最近幾個版本才出現(xiàn)的。個人感覺Switch比較好看一些。
ToggleButton的截圖:

Paste_Image.png
Switch 的截圖:

Paste_Image.png
<ToggleButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New ToggleButton"
android:id="@+id/toggleButton"
android:layout_below="@+id/radioGroup"
android:layout_alignParentStart="true" />
<Switch
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="200dp"
android:layout_marginTop="30dp"
android:id="@+id/switch0"
android:checked="true" />
另外,ToggleButton 與 Switch都需要實現(xiàn)各自的點擊事件的處理,這里我就不多說了。