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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
/*
* Copyright (C) 2020 The Android Open Source Project
*
* 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.android.settingslib.widget;
import android.content.Context;
import android.text.SpannableString;
import android.text.TextUtils;
import android.text.method.LinkMovementMethod;
import android.text.style.URLSpan;
import android.util.AttributeSet;
import android.view.View;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.StringRes;
import androidx.annotation.VisibleForTesting;
import androidx.preference.Preference;
import androidx.preference.PreferenceViewHolder;
/**
* A custom preference acting as "footer" of a page. It has a field for icon and text. It is added
* to screen as the last preference.
*/
public class FooterPreference extends Preference {
public static final String KEY_FOOTER = "footer_preference";
static final int ORDER_FOOTER = Integer.MAX_VALUE - 1;
@VisibleForTesting
View.OnClickListener mLearnMoreListener;
private CharSequence mContentDescription;
private CharSequence mLearnMoreContentDescription;
private FooterLearnMoreSpan mLearnMoreSpan;
public FooterPreference(Context context, AttributeSet attrs) {
super(context, attrs, R.attr.footerPreferenceStyle);
init();
}
public FooterPreference(Context context) {
this(context, null);
}
@Override
public void onBindViewHolder(PreferenceViewHolder holder) {
super.onBindViewHolder(holder);
TextView title = holder.itemView.findViewById(android.R.id.title);
title.setMovementMethod(new LinkMovementMethod());
title.setClickable(false);
title.setLongClickable(false);
if (!TextUtils.isEmpty(mContentDescription)) {
title.setContentDescription(mContentDescription);
}
TextView learnMore = holder.itemView.findViewById(R.id.settingslib_learn_more);
if (learnMore != null && mLearnMoreListener != null) {
learnMore.setVisibility(View.VISIBLE);
SpannableString learnMoreText = new SpannableString(learnMore.getText());
if (mLearnMoreSpan != null) {
learnMoreText.removeSpan(mLearnMoreSpan);
}
mLearnMoreSpan = new FooterLearnMoreSpan(mLearnMoreListener);
learnMoreText.setSpan(mLearnMoreSpan, 0,
learnMoreText.length(), 0);
learnMore.setText(learnMoreText);
if (!TextUtils.isEmpty(mLearnMoreContentDescription)) {
learnMore.setContentDescription(mLearnMoreContentDescription);
}
} else {
learnMore.setVisibility(View.GONE);
}
}
@Override
public void setSummary(CharSequence summary) {
setTitle(summary);
}
@Override
public void setSummary(int summaryResId) {
setTitle(summaryResId);
}
@Override
public CharSequence getSummary() {
return getTitle();
}
/**
* To set content description of the {@link FooterPreference}. This can use for talkback
* environment if developer wants to have a customization content.
*
* @param contentDescription The resource id of the content description.
*/
public void setContentDescription(CharSequence contentDescription) {
if (!TextUtils.equals(mContentDescription, contentDescription)) {
mContentDescription = contentDescription;
notifyChanged();
}
}
/**
* Return the content description of footer preference.
*/
@VisibleForTesting
CharSequence getContentDescription() {
return mContentDescription;
}
/**
* To set content description of the learn more text. This can use for talkback
* environment if developer wants to have a customization content.
*
* @param learnMoreContentDescription The resource id of the content description.
*/
public void setLearnMoreContentDescription(CharSequence learnMoreContentDescription) {
if (!TextUtils.equals(mContentDescription, learnMoreContentDescription)) {
mLearnMoreContentDescription = learnMoreContentDescription;
notifyChanged();
}
}
/**
* Return the content description of learn more link.
*/
@VisibleForTesting
CharSequence getLearnMoreContentDescription() {
return mLearnMoreContentDescription;
}
/**
* Assign an action for the learn more link.
*/
public void setLearnMoreAction(View.OnClickListener listener) {
if (mLearnMoreListener != listener) {
mLearnMoreListener = listener;
notifyChanged();
}
}
private void init() {
setLayoutResource(R.layout.preference_footer);
if (getIcon() == null) {
setIcon(R.drawable.settingslib_ic_info_outline_24);
}
setOrder(ORDER_FOOTER);
if (TextUtils.isEmpty(getKey())) {
setKey(KEY_FOOTER);
}
}
/**
* The builder is convenient to creat a dynamic FooterPreference.
*/
public static class Builder {
private Context mContext;
private String mKey;
private CharSequence mTitle;
private CharSequence mContentDescription;
private CharSequence mLearnMoreContentDescription;
public Builder(@NonNull Context context) {
mContext = context;
}
/**
* To set the key value of the {@link FooterPreference}.
*
* @param key The key value.
*/
public Builder setKey(@NonNull String key) {
mKey = key;
return this;
}
/**
* To set the title of the {@link FooterPreference}.
*
* @param title The title.
*/
public Builder setTitle(CharSequence title) {
mTitle = title;
return this;
}
/**
* To set the title of the {@link FooterPreference}.
*
* @param titleResId The resource id of the title.
*/
public Builder setTitle(@StringRes int titleResId) {
mTitle = mContext.getText(titleResId);
return this;
}
/**
* To set content description of the {@link FooterPreference}. This can use for talkback
* environment if developer wants to have a customization content.
*
* @param contentDescription The resource id of the content description.
*/
public Builder setContentDescription(CharSequence contentDescription) {
mContentDescription = contentDescription;
return this;
}
/**
* To set content description of the {@link FooterPreference}. This can use for talkback
* environment if developer wants to have a customization content.
*
* @param contentDescriptionResId The resource id of the content description.
*/
public Builder setContentDescription(@StringRes int contentDescriptionResId) {
mContentDescription = mContext.getText(contentDescriptionResId);
return this;
}
/**
* To set content description of the learn more text. This can use for talkback
* environment if developer wants to have a customization content.
*
* @param learnMoreContentDescription The resource id of the content description.
*/
public Builder setLearnMoreContentDescription(CharSequence learnMoreContentDescription) {
mLearnMoreContentDescription = learnMoreContentDescription;
return this;
}
/**
* To set content description of the {@link FooterPreference}. This can use for talkback
* environment if developer wants to have a customization content.
*
* @param learnMoreContentDescriptionResId The resource id of the content description.
*/
public Builder setLearnMoreContentDescription(
@StringRes int learnMoreContentDescriptionResId) {
mLearnMoreContentDescription = mContext.getText(learnMoreContentDescriptionResId);
return this;
}
/**
* To generate the {@link FooterPreference}.
*/
public FooterPreference build() {
final FooterPreference footerPreference = new FooterPreference(mContext);
footerPreference.setSelectable(false);
if (TextUtils.isEmpty(mTitle)) {
throw new IllegalArgumentException("Footer title cannot be empty!");
}
footerPreference.setTitle(mTitle);
if (!TextUtils.isEmpty(mKey)) {
footerPreference.setKey(mKey);
}
if (!TextUtils.isEmpty(mContentDescription)) {
footerPreference.setContentDescription(mContentDescription);
}
if (!TextUtils.isEmpty(mLearnMoreContentDescription)) {
footerPreference.setLearnMoreContentDescription(mLearnMoreContentDescription);
}
return footerPreference;
}
}
/**
* A {@link URLSpan} that opens a support page when clicked
*/
static class FooterLearnMoreSpan extends URLSpan {
private final View.OnClickListener mClickListener;
FooterLearnMoreSpan(View.OnClickListener clickListener) {
// sets the url to empty string so we can prevent any other span processing from
// clearing things we need in this string.
super("");
mClickListener = clickListener;
}
@Override
public void onClick(View widget) {
if (mClickListener != null) {
mClickListener.onClick(widget);
}
}
}
}
|