-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathblRadioGroup.java
222 lines (194 loc) · 6.63 KB
/
blRadioGroup.java
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
* Copyright (C) 2019 Sam Lu
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.a0soft.gphone.base.widget.constraint;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CompoundButton;
import android.widget.RadioButton;
import java.util.ArrayList;
import androidx.annotation.IdRes;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintHelper;
import androidx.constraintlayout.widget.ConstraintLayout;
/**
* Usage example:
* <pre>{@code
* <android.support.constraint.ConstraintLayout
* ...
* <com.a0soft.gphone.base.widget.constraint.blRadioGroup
* android:layout_width="wrap_content"
* android:layout_height="wrap_content"
* app:constraint_referenced_ids="radioButton1, radioButton2" />
* </android.support.constraint.ConstraintLayout>
* }</pre>
*/
@SuppressWarnings("unused")
public final class blRadioGroup extends ConstraintHelper {
/**
* <p>Interface definition for a callback to be invoked when the checked
* radio button changed in this group.</p>
*/
public interface OnCheckedChangeListener {
/**
* <p>Called when the checked radio button has changed. When the
* selection is cleared, nCheckedId is -1.</p>
*
* @param rg the group in which the checked radio button has changed
* @param nCheckedId the unique identifier of the newly checked radio button
*/
void OnCheckedChanged(blRadioGroup rg, @IdRes int nCheckedId);
}
private @Nullable OnCheckedChangeListener m_listenerOnCheckedChange;
private final @NonNull ArrayList<RadioButton> m_vRadioButtons = new ArrayList<>();
private boolean m_bSkipCheckingViewsRecursively = false;
private int m_nCurrentSelectedViewId = -1;
private int m_nSelectedViewIdBeforePreLayout = -1;
private final @NonNull CompoundButton.OnCheckedChangeListener m_listenerRadioButton =
new CompoundButton.OnCheckedChangeListener() {
@Override public void
onCheckedChanged(CompoundButton vButton, boolean bIsChecked)
{
if (m_bSkipCheckingViewsRecursively)
return;
if (m_nCurrentSelectedViewId != -1) {
// uncheck the checked button
m_bSkipCheckingViewsRecursively = true;
for (RadioButton v: m_vRadioButtons) {
if (v.getId() == m_nCurrentSelectedViewId) {
v.setChecked(false);
break;
}
}
m_bSkipCheckingViewsRecursively = false;
}
_SetCurrentSelectedViewId(vButton.getId());
}
};
//////////////////////////////////////////////
public
blRadioGroup(Context ctx)
{
super(ctx);
}
public
blRadioGroup(Context ctx, AttributeSet attrs)
{
super(ctx, attrs);
}
public
blRadioGroup(Context ctx, AttributeSet attrs, int defStyleAttr)
{
super(ctx, attrs, defStyleAttr);
}
@Override protected void
init(AttributeSet attrs)
{
super.init(attrs);
mUseViewMeasure = false;
}
@Override public void
updatePreLayout(ConstraintLayout container)
{
super.updatePreLayout(container);
for (int i = 0; i < mCount; i++) {
int nId = mIds[i];
View v = container.getViewById(nId);
if (v instanceof RadioButton) {
m_vRadioButtons.add((RadioButton)v);
((RadioButton) v).setOnCheckedChangeListener(m_listenerRadioButton);
}
}
if (m_nSelectedViewIdBeforePreLayout != -1)
Check(m_nSelectedViewIdBeforePreLayout);
}
@Override public void
updatePostLayout(ConstraintLayout container)
{
ViewGroup.LayoutParams params = getLayoutParams();
params.width = 0;
params.height = 0;
super.updatePostLayout(container);
}
public void
ClearCheck()
{
if (m_nCurrentSelectedViewId != -1) {
// uncheck the checked button
m_bSkipCheckingViewsRecursively = true;
for (RadioButton v: m_vRadioButtons) {
if (v.getId() == m_nCurrentSelectedViewId) {
v.setChecked(false);
break;
}
}
m_bSkipCheckingViewsRecursively = false;
_SetCurrentSelectedViewId(-1);
}
}
/**
* @return selected RadioButton id, -1 if no checked button
*/
public @IdRes int
GetCheckedRadioButtonId()
{
return m_nCurrentSelectedViewId;
}
/**
* @param nRadioButtonId set it as checked
*/
public void
Check(@IdRes int nRadioButtonId)
{
final boolean bIsBeforePreLayout = m_vRadioButtons.isEmpty();
m_nSelectedViewIdBeforePreLayout = (bIsBeforePreLayout ? nRadioButtonId : -1);
boolean bFound = false;
m_bSkipCheckingViewsRecursively = true;
for (RadioButton v: m_vRadioButtons) {
if (v.getId() == nRadioButtonId) {
v.setChecked(true);
bFound = true;
}
else
v.setChecked(false);
}
m_bSkipCheckingViewsRecursively = false;
if (!bIsBeforePreLayout)
_SetCurrentSelectedViewId(bFound ? nRadioButtonId : -1);
}
/**
* <p>Register a callback to be invoked when the checked radio button
* changes in this group.</p>
*
* @param listener the callback to call on checked state change
*/
public void
SetOnCheckedChangeListener(@Nullable OnCheckedChangeListener listener)
{
m_listenerOnCheckedChange = listener;
}
private void
_SetCurrentSelectedViewId(@IdRes int nRadioBtnId)
{
if (m_nCurrentSelectedViewId != nRadioBtnId) {
m_nCurrentSelectedViewId = nRadioBtnId;
if (m_listenerOnCheckedChange != null)
m_listenerOnCheckedChange.OnCheckedChanged(this, nRadioBtnId);
}
}
}