Top "Android-checkbox" questions

Checkboxes allow the user to select one or more options from a set.

How to change the color of a CheckBox?

How do I change the default CheckBox color in Android? By default the CheckBox color is green, and I want …

android android-layout android-checkbox
Android: checkbox listener

I want to put a Listener over a CheckBox. I looked for info and it is like this: satView = (CheckBox)…

java android android-checkbox
Android Checkable Menu Item

I have the following menu layout in my Android app: <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="…

android android-menu android-checkbox
How to set checkbox border color

The checkbox border is invisible on white background. I played with different color parameters without success. I need black border …

android android-layout android-styles android-checkbox
disable checkbox after checked, android

I want to achieve this : user check on a unchecked checkbox, a toast displayed, the checkbox then become disable.. male.…

android android-checkbox
How to create the checkBox in circular shape?

I am facing the issue in creating the checkbox in circular shape in android. I tried many methods but my …

android android-checkbox
android spinner dropdown checkbox

I have Spinner like this : <Spinner android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/…

android drop-down-menu textview android-spinner android-checkbox
How to do something when a checkbox change state?

This is my code: <CheckBox android:id="@+id/sprint_checkbox" android:layout_width="fill_parent" android:layout_height="wrap_…

android checkbox oncheckedchanged android-checkbox
Defining custom-checkbox in android

How to make a custom check-Box in android my current XML:: <LinearLayout android:id="@+id/linearLayout_individualdays" android:layout_…

android android-checkbox
Choice Mode in a RecyclerView?

I'm trying to figure out how to achieve the same effect of mListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE); in a …

android listview android-recyclerview android-checkbox