0% found this document useful (0 votes)
697 views4 pages

7) Write A Program To Show Five Checkboxes

The document shows XML code to display five checkboxes and Java code to display a toast message for the selected checkboxes. The XML code defines the layout of the checkboxes and the Java code finds the checkboxes and adds click listeners to display a toast for the checked/unchecked state.

Uploaded by

ethicalninja7
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
0% found this document useful (0 votes)
697 views4 pages

7) Write A Program To Show Five Checkboxes

The document shows XML code to display five checkboxes and Java code to display a toast message for the selected checkboxes. The XML code defines the layout of the checkboxes and the Java code finds the checkboxes and adds click listeners to display a toast for the checked/unchecked state.

Uploaded by

ethicalninja7
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1/ 4

7) Write a program to show five checkboxes and toast selected checkboxes.

exp-11 Ans: Xml code

<?xml version="1.0" encoding="utf-8"?>


<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:id="@+id/textView"
android:layout_width="257dp"
android:layout_height="33dp"
android:textAlignment="center"
android:text="Select Language"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.11" />

<CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Java"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/checkBox2"
app:layout_constraintHorizontal_bias="0.645"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
app:layout_constraintVertical_bias="0.069" />

<CheckBox
android:id="@+id/checkBox2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Python"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.655"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
app:layout_constraintVertical_bias="0.069" />

<CheckBox
android:id="@+id/checkBox3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=".Net"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.286"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
app:layout_constraintVertical_bias="0.215" />
<CheckBox
android:id="@+id/checkBox4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="C"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.591"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
app:layout_constraintVertical_bias="0.215" />

<CheckBox
android:id="@+id/checkBox5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Html"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.468"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
app:layout_constraintVertical_bias="0.348" />
</androidx.constraintlayout.widget.ConstraintLayout>

___________________________________________________________________________________
__

*Java Code

package com.example.checkbox;

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.CheckBox;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {


CheckBox cb1,cb2,cb3,cb4,cb5;
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
cb1=findViewById(R.id.checkBox);
cb2=findViewById(R.id.checkBox2);
cb3=findViewById(R.id.checkBox3);
cb4=findViewById(R.id.checkBox4);
cb5=findViewById(R.id.checkBox5);

cb1.setOnClickListener(new View.OnClickListener() {
@Override public void onClick(View view) {
if (cb1.isChecked()){
Toast.makeText(MainActivity.this,cb1.getText().toString()+" is
checked",Toast.LENGTH_SHORT).show();
}
else {
Toast.makeText(MainActivity.this,cb1.getText().toString()+" is
unchecked",Toast.LENGTH_SHORT).show();
} } });

cb2.setOnClickListener(new View.OnClickListener()
{
@Override public void onClick(View view) {
if (cb2.isChecked()){ Toast.makeText(MainActivity.this,cb2.getText().toString()+"
is checked",Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(MainActivity.this,cb2.getText().toString()+" is
unchecked",Toast.LENGTH_SHORT).show(); } } });

cb3.setOnClickListener(new View.OnClickListener() { @Override public void


onClick(View view) { if (cb3.isChecked()){
makeText(MainActivity.this,cb3.getText().toString()+" is
checked",Toast.LENGTH_SHORT).show();
}
else {
Toast.makeText(MainActivity.this,cb3.getText().toString()+" is
unchecked",Toast.LENGTH_SHORT).show(); } } });

cb4.setOnClickListener(new View.OnClickListener() {
@Override public void onClick(View view)
{
if (cb4.isChecked())
{ Toast.makeText(MainActivity.this,cb4.getText().toString()+" is
checked",Toast.LENGTH_SHORT).show(); }
else
{
Toast.makeText(MainActivity.this,cb4.getText().toString()+" is
unchecked",Toast.LENGTH_SHORT).show(); } } });

cb5.setOnClickListener(new View.OnClickListener()
{ @Override public void onClick(View view)
{
if (cb5.isChecked())
{ Toast.makeText(MainActivity.this,cb5.getText().toString()+" is
checked",Toast.LENGTH_SHORT).show(); }
else
{
Toast.makeText(MainActivity.this,cb5.getText().toString()+" is
unchecked",Toast.LENGTH_SHORT).show(); } } });
}
}

You might also like