Skip to main content

Toggle Button in Android

Toggle Button in Android


Displays checked/unchecked states as a button with a "light" indicator and by default 
accompanied with the text "ON" or "OFF".


main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
        <TextView
        android:text="Select"
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        </TextView>
        <ToggleButton
        android:text="ToggleButton"
        android:id="@+id/toggleButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        </ToggleButton>
    </LinearLayout>
</LinearLayout>


ToggleButtonExampleActivity.java
package com.example.togglebutton;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
import android.widget.ToggleButton;

public class ToggleButtonExampleActivity extends Activity {
    ToggleButton toggleButton;

      /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        toggleButton=(ToggleButton)findViewById(R.id.toggleButton1);
        toggleButton.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                if (((ToggleButton) v).isChecked())
                Toast.makeText(getApplicationContext(), "ON", Toast.LENGTH_LONG).show();
                else
                   Toast.makeText(getApplicationContext(), "OFF", Toast.LENGTH_LONG).show();
              }
            });
    }
   
}


OUTPUT



See More
Checkbox
Radiobutton
Autocomplete textview

Comments