blob: 99140b55e84f7328cd7bbd0b5d130992c73242a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
page.title=Checkboxes
@jd:body
<div id="qv-wrapper">
<div id="qv">
<h2>In this document</h2>
<ol>
<li><a href="#HandlingEvents">Responding to Click Events</a></li>
</ol>
<h2>Key classes</h2>
<ol>
<li>{@link android.widget.CheckBox}</li>
</ol>
</div>
</div>
<p>Checkboxes allow the user to select one or more options from a set. Typically, you should
present each checkbox option in a vertical list.</p>
<img src="{@docRoot}images/ui/checkboxes.png" alt="" />
<p>To create each checkbox option, create a {@link android.widget.CheckBox} in your layout. Because
a set of checkbox options allows the user to select multiple items, each checkbox is managed
separately and you must register a click listener for each one.</p>
<h2 id="HandlingEvents">Responding to Click Events</h2>
<p>When the user selects a checkbox, the {@link android.widget.CheckBox} object receives an
on-click event.</p>
<p>To define the click event handler for a checkbox, add the <code><a
href="/reference/android/R.attr.html#onClick">android:onClick</a></code> attribute to the
<code><CheckBox></code> element in your XML
layout. The value for this attribute must be the name of the method you want to call in response
to a click event. The {@link android.app.Activity} hosting the layout must then implement the
corresponding method.</p>
<p>For example, here are a couple {@link android.widget.CheckBox} objects in a list:</p>
<pre>
<?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">
<CheckBox android:id="@+id/checkbox_meat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/meat"
android:onClick="onCheckboxClicked"/>
<CheckBox android:id="@+id/checkbox_cheese"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cheese"
android:onClick="onCheckboxClicked"/>
</LinearLayout>
</pre>
<p>Within the {@link android.app.Activity} that hosts this layout, the following method handles the
click event for both checkboxes:</p>
<pre>
public void onCheckboxClicked(View view) {
// Is the view now checked?
boolean checked = ((CheckBox) view).isChecked();
// Check which checkbox was clicked
switch(view.getId()) {
case R.id.checkbox_meat:
if (checked)
// Put some meat on the sandwich
else
// Remove the meat
break;
case R.id.checkbox_cheese:
if (checked)
// Cheese me
else
// I'm lactose intolerant
break;
// TODO: Veggie sandwich
}
}
</pre>
<p>The method you declare in the {@link android.R.attr#onClick android:onClick} attribute
must have a signature exactly as shown above. Specifically, the method must:</p>
<ul>
<li>Be public</li>
<li>Return void</li>
<li>Define a {@link android.view.View} as its only parameter (this will be the {@link
android.view.View} that was clicked)</li>
</ul>
<p class="note"><strong>Tip:</strong> If you need to change the radio button state
yourself (such as when loading a saved {@link android.preference.CheckBoxPreference}),
use the {@link android.widget.CompoundButton#setChecked(boolean)} or {@link
android.widget.CompoundButton#toggle()} method.</p>
|