CheckBox pertenece a la clase android.widget.CheckBox. La clase Android CheckBox es la subclase de la clase CompoundButton. Generalmente se usa en un lugar donde el usuario puede seleccionar una o más opciones de una lista dada de opciones. Por ejemplo, seleccionar aficiones.
public class CheckBox extends CompoundButton
Jerarquía de clases:
java.lang.Object ↳ android.view.View ↳ android.widget.TextView ↳ android.widget.Button ↳ android.widget.CompoundButton ↳ android.widget.CheckBox
Tiene dos estados: marcado o no marcado .
Métodos de la clase CheckBox
- public boolean isChecked(): si CheckBox está en estado marcado, devuelve verdadero, de lo contrario, falso.
- public void setChecked(estado booleano): Cambia el estado del CheckBox.
A continuación se muestra el código de un ejemplo en el que el usuario elige sus pasatiempos de la lista dada que contiene pintura, lectura, canto y cocina con la ayuda de CheckBox.
MainActivity.java
//Below is the code for MainActivity.java package com.geeksforgeeks.gfg.checkbox; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.CheckBox; import android.widget.Toast; public class MainActivity extends AppCompatActivity { CheckBox ch, ch1, ch2, ch3; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Binding MainActivity.java with activity_main.xml file setContentView(R.layout.activity_main); // Finding CheckBox by its unique ID ch=(CheckBox)findViewById(R.id.checkBox); ch1=(CheckBox)findViewById(R.id.checkBox2); ch2=(CheckBox)findViewById(R.id.checkBox3); ch3=(CheckBox)findViewById(R.id.checkBox4); } // This function is invoked when the button is pressed. public void Check(View v) { String msg=""; // Concatenation of the checked options in if // isChecked() is used to check whether // the CheckBox is in true state or not. if(ch.isChecked()) msg = msg + " Painting "; if(ch1.isChecked()) msg = msg + " Reading "; if(ch2.isChecked()) msg = msg + " Singing "; if(ch3.isChecked()) msg = msg + " Cooking "; // Toast is created to display the // message using show() method. Toast.makeText(this, msg + "are selected", Toast.LENGTH_LONG).show(); } }
actividad_principal.xml
El archivo activity_main.xml tiene una vista de texto, 4 casillas de verificación y un botón. La vista de texto solicita al usuario que seleccione sus pasatiempos.
Primero, el usuario selecciona sus opciones y luego presiona el botón Enviar. Después de presionar el botón Enviar, se generará un brindis que muestra los pasatiempos seleccionados.
<!-- Below is the code for activity_main.xml --> <?xml version="1.0" encoding="utf-8"?> <LinearLayout 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" android:background="#ffffff" android:orientation="vertical" tools:context="com.example.hp.checkbox.MainActivity"> <TextView android:id="@+id/textView" <!-- covers the entire width of the screen --> android:layout_width="match_parent" <!-- covers as much height as required. --> android:layout_height="wrap_content" <!--create 8dp space from margin ends--> android:layout_marginEnd="8dp" <!--create 8dp space from start of margin--> android:layout_marginStart="8dp" <!--create 48dp space from the top of margin--> android:layout_marginTop="48dp" android:text="Choose your hobbies:" android:textSize="24sp" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <CheckBox android:id="@+id/checkBox" <!-- covers the entire width of the screen --> android:layout_width="match_parent" <!-- covers as much height as required. --> android:layout_height="wrap_content" android:text="Painting" android:layout_marginTop="16dp" android:textSize="18sp" /> <CheckBox android:id="@+id/checkBox2" <!-- covers the entire width of the screen --> android:layout_width="match_parent" <!-- covers as much height as required. --> android:layout_height="wrap_content" android:text="Reading" android:layout_marginTop="16dp" android:textSize="18sp" /> <CheckBox android:id="@+id/checkBox3" <!-- covers the entire width of the screen --> android:layout_width="match_parent" <!-- covers as much height as required. --> android:layout_height="wrap_content" android:layout_marginTop="16dp" android:text="Singing" android:textSize="18sp" app:layout_constraintTop_toTopOf="@+id/textView" tools:layout_editor_absoluteX="382dp" /> <CheckBox android:id="@+id/checkBox4" <!-- covers the entire width of the screen --> android:layout_width="match_parent" <!-- covers as much height as required. --> android:layout_height="wrap_content" android:text="Cooking" android:layout_marginTop="16dp" android:textSize="18sp" app:layout_constraintTop_toBottomOf="@+id/checkBox" tools:layout_editor_absoluteX="386dp" /> <Button android:id="@+id/button" <!-- covers the entire width of the screen --> android:layout_width="match_parent" <!-- covers as much height as required. --> android:layout_height="wrap_content" android:layout_marginTop="16dp" android:onClick="Check" android:text="submit" /> </LinearLayout>
Producción:
Publicación traducida automáticamente
Artículo escrito por AnushkaKhattri y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA