AdSense

AdSense3

Friday 24 July 2015

Android CheckBox Example

android checkbox
Android CheckBox is a type of two state button either checked or unchecked.
There can be a lot of usage of checkboxes. For example, it can be used to know the hobby of the user, activate/deactivate the specific action etc.
Android CheckBox class is the subclass of CompoundButton class.

Android CheckBox class

The android.widget.CheckBox class provides the facility of creating the CheckBoxes.

Methods of CheckBox class

There are many inherited methods of View, TextView, and Button classes in the CheckBox class. Some of them are as follows:
MethodDescription
public boolean isChecked()Returns true if it is checked otherwise false.
public void setChecked(boolean status)Changes the state of the CheckBox.

Android CheckBox Example

activity_main.xml

Drag the three checkboxes and one button for the layout. Now the activity_main.xml file will look like this:
File: activity_main.xml
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     tools:context=".MainActivity" >  
  6.   
  7.     <CheckBox  
  8.         android:id="@+id/checkBox1"  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content"  
  11.         android:layout_alignParentLeft="true"  
  12.         android:layout_alignParentTop="true"  
  13.         android:text="Pizza" />  
  14.   
  15.     <CheckBox  
  16.         android:id="@+id/checkBox2"  
  17.         android:layout_width="wrap_content"  
  18.         android:layout_height="wrap_content"  
  19.         android:layout_alignParentTop="true"  
  20.         android:layout_toRightOf="@+id/checkBox1"  
  21.         android:text="Coffe" />  
  22.   
  23.     <CheckBox  
  24.         android:id="@+id/checkBox3"  
  25.         android:layout_width="wrap_content"  
  26.         android:layout_height="wrap_content"  
  27.         android:layout_alignParentTop="true"  
  28.         android:layout_toRightOf="@+id/checkBox2"  
  29.         android:text="Burger" />  
  30.   
  31.     <Button  
  32.         android:id="@+id/button1"  
  33.         android:layout_width="wrap_content"  
  34.         android:layout_height="wrap_content"  
  35.         android:layout_below="@+id/checkBox2"  
  36.         android:layout_marginTop="32dp"  
  37.         android:layout_toLeftOf="@+id/checkBox3"  
  38.         android:text="Order" />  
  39.   
  40. </RelativeLayout>  

Activity class

Let's write the code to check which toggle button is ON/OFF.
File: MainActivity.java
  1. package com.example.checkbox;  
  2.   
  3. import android.os.Bundle;  
  4. import android.app.Activity;  
  5. import android.view.Menu;  
  6. import android.view.View;  
  7. import android.view.View.OnClickListener;  
  8. import android.widget.*;  
  9.   
  10. public class MainActivity extends Activity {  
  11.     CheckBox pizza,coffe,burger;  
  12.     Button buttonOrder;  
  13.     @Override  
  14.     protected void onCreate(Bundle savedInstanceState) {  
  15.         super.onCreate(savedInstanceState);  
  16.         setContentView(R.layout.activity_main);  
  17.         addListenerOnButtonClick();  
  18.     }  
  19. public void addListenerOnButtonClick(){  
  20.     //Getting instance of CheckBoxes and Button from the activty_main.xml file  
  21.     pizza=(CheckBox)findViewById(R.id.checkBox1);  
  22.     coffe=(CheckBox)findViewById(R.id.checkBox2);  
  23.     burger=(CheckBox)findViewById(R.id.checkBox3);  
  24.     buttonOrder=(Button)findViewById(R.id.button1);  
  25.   
  26.     //Applying the Listener on the Button click  
  27.     buttonOrder.setOnClickListener(new OnClickListener(){  
  28.   
  29.         @Override  
  30.         public void onClick(View view) {  
  31.             int totalamount=0;  
  32.             StringBuilder result=new StringBuilder();  
  33.             result.append("Selected Items:");  
  34.             if(pizza.isChecked()){  
  35.                 result.append("\nPizza 100Rs");  
  36.                 totalamount+=100;  
  37.             }  
  38.             if(coffe.isChecked()){  
  39.                 result.append("\nCoffe 50Rs");  
  40.                 totalamount+=50;  
  41.             }  
  42.             if(burger.isChecked()){  
  43.                 result.append("\nBurger 120Rs");  
  44.                 totalamount+=120;  
  45.             }  
  46.             result.append("\nTotal: "+totalamount+"Rs");  
  47.             //Displaying the message on the toast  
  48.             Toast.makeText(getApplicationContext(), result.toString(), Toast.LENGTH_LONG).show();  
  49.         }  
  50.           
  51.     });  
  52. }  
  53.     @Override  
  54.     public boolean onCreateOptionsMenu(Menu menu) {  
  55.         // Inflate the menu; this adds items to the action bar if it is present.  
  56.         getMenuInflater().inflate(R.menu.activity_main, menu);  
  57.         return true;  
  58.     }  
  59.   
  60. }  

Output:

android checkbox example output 1 android checkbox example output 2

1 comment: