blob: ad4b9d7e85bc8574de96b5249bc041461acc284d [file] [log] [blame]
Dianne Hackborn49b043f2015-05-07 14:21:38 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.view;
18
Felipe Lemef8a81742017-03-17 18:05:01 -070019import android.annotation.NonNull;
Philip P. Moltmann495cadd2017-03-10 16:45:02 -080020import android.annotation.Nullable;
Dianne Hackborn70d8be72015-06-23 19:33:02 +000021import android.graphics.Matrix;
Dianne Hackborn49b043f2015-05-07 14:21:38 -070022import android.graphics.Rect;
23import android.os.Bundle;
Felipe Lemeb4ca7012017-03-22 18:30:07 -070024import android.os.LocaleList;
Felipe Leme640f30a2017-03-06 15:44:06 -080025import android.view.autofill.AutofillId;
26import android.view.autofill.AutofillValue;
Dianne Hackborn49b043f2015-05-07 14:21:38 -070027
28/**
29 * Container for storing additional per-view data generated by {@link View#onProvideStructure
Felipe Leme640f30a2017-03-06 15:44:06 -080030 * View.onProvideStructure} and {@link View#onProvideAutofillStructure
31 * View.onProvideAutofillStructure}.
Dianne Hackborn49b043f2015-05-07 14:21:38 -070032 */
33public abstract class ViewStructure {
Felipe Leme0200d9e2017-01-24 15:10:26 -080034
35 /**
Dianne Hackborn02beb412015-05-19 11:18:16 -070036 * Set the identifier for this view.
37 *
38 * @param id The view's identifier, as per {@link View#getId View.getId()}.
39 * @param packageName The package name of the view's identifier, or null if there is none.
40 * @param typeName The type name of the view's identifier, or null if there is none.
41 * @param entryName The entry name of the view's identifier, or null if there is none.
42 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -070043 public abstract void setId(int id, String packageName, String typeName, String entryName);
44
Dianne Hackborn02beb412015-05-19 11:18:16 -070045 /**
Felipe Leme1a1e4682017-03-13 16:34:03 -070046 * Sets the name of the identifier for this view.
47 *
48 * <p>Typically used when adding virtual children (through
Felipe Leme03ee7812017-03-21 16:28:26 -070049 * {@link #asyncNewChild(int)}) that does not map to Android {@link View}
Felipe Leme1a1e4682017-03-13 16:34:03 -070050 * - otherwise, it's better to call {@link #setId(int, String, String, String)}.
51 *
52 * @param entryName The entry name of the view's identifier, or {@code null} if there is none.
53 */
54 public abstract void setIdEntry(String entryName);
55
56 /**
Dianne Hackborn02beb412015-05-19 11:18:16 -070057 * Set the basic dimensions of this view.
58 *
59 * @param left The view's left position, in pixels relative to its parent's left edge.
60 * @param top The view's top position, in pixels relative to its parent's top edge.
61 * @param scrollX How much the view's x coordinate space has been scrolled, in pixels.
62 * @param scrollY How much the view's y coordinate space has been scrolled, in pixels.
63 * @param width The view's visible width, in pixels. This is the width visible on screen,
64 * not the total data width of a scrollable view.
65 * @param height The view's visible height, in pixels. This is the height visible on
66 * screen, not the total data height of a scrollable view.
67 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -070068 public abstract void setDimens(int left, int top, int scrollX, int scrollY, int width,
69 int height);
70
Dianne Hackborn02beb412015-05-19 11:18:16 -070071 /**
Dianne Hackborn70d8be72015-06-23 19:33:02 +000072 * Set the transformation matrix associated with this view, as per
73 * {@link View#getMatrix View.getMatrix()}, or null if there is none.
74 */
75 public abstract void setTransformation(Matrix matrix);
76
77 /**
78 * Set the visual elevation (shadow) of the view, as per
79 * {@link View#getZ View.getZ()}. Note this is <em>not</em> related
80 * to the physical Z-ordering of this view relative to its other siblings (that is how
81 * they overlap when drawing), it is only the visual representation for shadowing.
82 */
83 public abstract void setElevation(float elevation);
84
85 /**
86 * Set an alpha transformation that is applied to this view, as per
87 * {@link View#getAlpha View.getAlpha()}. Value ranges from 0
88 * (completely transparent) to 1 (completely opaque); the default is 1, which means
89 * no transformation.
90 */
91 public abstract void setAlpha(float alpha);
92
93 /**
Dianne Hackborn02beb412015-05-19 11:18:16 -070094 * Set the visibility state of this view, as per
95 * {@link View#getVisibility View.getVisibility()}.
96 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -070097 public abstract void setVisibility(int visibility);
98
99 /** @hide */
100 public abstract void setAssistBlocked(boolean state);
101
Dianne Hackborn02beb412015-05-19 11:18:16 -0700102 /**
103 * Set the enabled state of this view, as per {@link View#isEnabled View.isEnabled()}.
104 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700105 public abstract void setEnabled(boolean state);
106
Dianne Hackborn02beb412015-05-19 11:18:16 -0700107 /**
108 * Set the clickable state of this view, as per {@link View#isClickable View.isClickable()}.
109 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700110 public abstract void setClickable(boolean state);
111
Dianne Hackborn02beb412015-05-19 11:18:16 -0700112 /**
113 * Set the long clickable state of this view, as per
114 * {@link View#isLongClickable View.isLongClickable()}.
115 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700116 public abstract void setLongClickable(boolean state);
117
Dianne Hackborn02beb412015-05-19 11:18:16 -0700118 /**
Mady Mellore8608912015-06-05 09:02:55 -0700119 * Set the context clickable state of this view, as per
120 * {@link View#isContextClickable View.isContextClickable()}.
Dianne Hackborn02beb412015-05-19 11:18:16 -0700121 */
Mady Mellore8608912015-06-05 09:02:55 -0700122 public abstract void setContextClickable(boolean state);
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700123
Dianne Hackborn02beb412015-05-19 11:18:16 -0700124 /**
125 * Set the focusable state of this view, as per {@link View#isFocusable View.isFocusable()}.
126 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700127 public abstract void setFocusable(boolean state);
128
Dianne Hackborn02beb412015-05-19 11:18:16 -0700129 /**
130 * Set the focused state of this view, as per {@link View#isFocused View.isFocused()}.
131 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700132 public abstract void setFocused(boolean state);
133
Dianne Hackborn02beb412015-05-19 11:18:16 -0700134 /**
135 * Set the accessibility focused state of this view, as per
136 * {@link View#isAccessibilityFocused View.isAccessibilityFocused()}.
137 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700138 public abstract void setAccessibilityFocused(boolean state);
139
Dianne Hackborn02beb412015-05-19 11:18:16 -0700140 /**
141 * Set the checkable state of this view, such as whether it implements the
142 * {@link android.widget.Checkable} interface.
143 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700144 public abstract void setCheckable(boolean state);
145
Dianne Hackborn02beb412015-05-19 11:18:16 -0700146 /**
147 * Set the checked state of this view, such as
148 * {@link android.widget.Checkable#isChecked Checkable.isChecked()}.
149 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700150 public abstract void setChecked(boolean state);
151
Dianne Hackborn02beb412015-05-19 11:18:16 -0700152 /**
153 * Set the selected state of this view, as per {@link View#isSelected View.isSelected()}.
154 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700155 public abstract void setSelected(boolean state);
156
Dianne Hackborn02beb412015-05-19 11:18:16 -0700157 /**
158 * Set the activated state of this view, as per {@link View#isActivated View.isActivated()}.
159 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700160 public abstract void setActivated(boolean state);
161
Dianne Hackborn02beb412015-05-19 11:18:16 -0700162 /**
Amith Yamasani858f98d2017-02-22 12:59:53 -0800163 * Set the opaque state of this view, as per {@link View#isOpaque View.isOpaque()}.
164 */
165 public abstract void setOpaque(boolean opaque);
166
167 /**
Dianne Hackborn02beb412015-05-19 11:18:16 -0700168 * Set the class name of the view, as per
169 * {@link View#getAccessibilityClassName View.getAccessibilityClassName()}.
170 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700171 public abstract void setClassName(String className);
172
Dianne Hackborn02beb412015-05-19 11:18:16 -0700173 /**
174 * Set the content description of the view, as per
175 * {@link View#getContentDescription View.getContentDescription()}.
176 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700177 public abstract void setContentDescription(CharSequence contentDescription);
178
Dianne Hackborn02beb412015-05-19 11:18:16 -0700179 /**
180 * Set the text that is associated with this view. There is no selection
181 * associated with the text. The text may have style spans to supply additional
182 * display and semantic information.
183 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700184 public abstract void setText(CharSequence text);
Dianne Hackborn02beb412015-05-19 11:18:16 -0700185
186 /**
187 * Like {@link #setText(CharSequence)} but with an active selection
188 * extending from <var>selectionStart</var> through <var>selectionEnd</var>.
189 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700190 public abstract void setText(CharSequence text, int selectionStart, int selectionEnd);
Dianne Hackborn02beb412015-05-19 11:18:16 -0700191
192 /**
Dianne Hackborn02beb412015-05-19 11:18:16 -0700193 * Explicitly set default global style information for text that was previously set with
194 * {@link #setText}.
195 *
196 * @param size The size, in pixels, of the text.
197 * @param fgColor The foreground color, packed as 0xAARRGGBB.
198 * @param bgColor The background color, packed as 0xAARRGGBB.
Dianne Hackborn16036f22015-06-22 14:05:51 -0700199 * @param style Style flags, as defined by {@link android.app.assist.AssistStructure.ViewNode}.
Dianne Hackborn02beb412015-05-19 11:18:16 -0700200 */
James Cook5cfaae42015-05-28 15:52:44 -0700201 public abstract void setTextStyle(float size, int fgColor, int bgColor, int style);
Dianne Hackborn02beb412015-05-19 11:18:16 -0700202
203 /**
Dianne Hackborn6f0fdc42015-07-07 14:29:36 -0700204 * Set line information for test that was previously supplied through
205 * {@link #setText(CharSequence)}. This provides the line breaking of the text as it
206 * is shown on screen. This function takes ownership of the provided arrays; you should
207 * not make further modification to them.
208 *
209 * @param charOffsets The offset in to {@link #setText} where a line starts.
210 * @param baselines The baseline where the line is drawn on screen.
211 */
212 public abstract void setTextLines(int[] charOffsets, int[] baselines);
213
214 /**
Dianne Hackborn02beb412015-05-19 11:18:16 -0700215 * Set optional hint text associated with this view; this is for example the text that is
216 * shown by an EditText when it is empty to indicate to the user the kind of text to input.
217 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700218 public abstract void setHint(CharSequence hint);
219
Dianne Hackborn02beb412015-05-19 11:18:16 -0700220 /**
221 * Retrieve the last {@link #setText(CharSequence)}.
222 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700223 public abstract CharSequence getText();
Dianne Hackborn02beb412015-05-19 11:18:16 -0700224
225 /**
226 * Retrieve the last selection start set by {@link #setText(CharSequence, int, int)}.
227 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700228 public abstract int getTextSelectionStart();
Dianne Hackborn02beb412015-05-19 11:18:16 -0700229
230 /**
231 * Retrieve the last selection end set by {@link #setText(CharSequence, int, int)}.
232 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700233 public abstract int getTextSelectionEnd();
Dianne Hackborn02beb412015-05-19 11:18:16 -0700234
235 /**
236 * Retrieve the last hint set by {@link #setHint}.
237 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700238 public abstract CharSequence getHint();
239
Dianne Hackborn02beb412015-05-19 11:18:16 -0700240 /**
241 * Get extra data associated with this view structure; the returned Bundle is mutable,
242 * allowing you to view and modify its contents. Keys placed in the Bundle should use
243 * an appropriate namespace prefix (such as com.google.MY_KEY) to avoid conflicts.
244 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700245 public abstract Bundle getExtras();
Dianne Hackborn02beb412015-05-19 11:18:16 -0700246
247 /**
248 * Returns true if {@link #getExtras} has been used to create extra content.
249 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700250 public abstract boolean hasExtras();
251
Dianne Hackborn02beb412015-05-19 11:18:16 -0700252 /**
253 * Set the number of children of this view, which defines the range of indices you can
254 * use with {@link #newChild} and {@link #asyncNewChild}. Calling this method again
255 * resets all of the child state of the view, removing any children that had previously
256 * been added.
257 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700258 public abstract void setChildCount(int num);
Dianne Hackborn02beb412015-05-19 11:18:16 -0700259
260 /**
Dianne Hackbornece0f4f2015-06-11 13:29:01 -0700261 * Add to this view's child count. This increases the current child count by
262 * <var>num</var> children beyond what was last set by {@link #setChildCount}
263 * or {@link #addChildCount}. The index at which the new child starts in the child
264 * array is returned.
265 *
266 * @param num The number of new children to add.
267 * @return Returns the index in the child array at which the new children start.
268 */
269 public abstract int addChildCount(int num);
270
271 /**
Dianne Hackborn02beb412015-05-19 11:18:16 -0700272 * Return the child count as set by {@link #setChildCount}.
273 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700274 public abstract int getChildCount();
Dianne Hackborn02beb412015-05-19 11:18:16 -0700275
276 /**
277 * Create a new child {@link ViewStructure} in this view, putting into the list of
278 * children at <var>index</var>.
Felipe Lemedbe07a52017-03-03 14:29:17 -0800279 *
Dianne Hackborn02beb412015-05-19 11:18:16 -0700280 * @return Returns an fresh {@link ViewStructure} ready to be filled in.
281 */
Dianne Hackborn8ecf16d2015-06-23 13:09:21 -0700282 public abstract ViewStructure newChild(int index);
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700283
Dianne Hackborn02beb412015-05-19 11:18:16 -0700284 /**
285 * Like {@link #newChild}, but allows the caller to asynchronously populate the returned
286 * child. It can transfer the returned {@link ViewStructure} to another thread for it
287 * to build its content (and children etc). Once done, some thread must call
288 * {@link #asyncCommit} to tell the containing {@link ViewStructure} that the async
289 * population is done.
290 * @return Returns an fresh {@link ViewStructure} ready to be filled in.
291 */
Dianne Hackborn8ecf16d2015-06-23 13:09:21 -0700292 public abstract ViewStructure asyncNewChild(int index);
Dianne Hackborn02beb412015-05-19 11:18:16 -0700293
294 /**
Felipe Lemef8a81742017-03-17 18:05:01 -0700295 * Sets the {@link AutofillId} for this virtual node.
Felipe Leme0200d9e2017-01-24 15:10:26 -0800296 *
Felipe Lemef8a81742017-03-17 18:05:01 -0700297 * @param parent parent node.
298 * @param virtualId an opaque ID to the Android System; it's the same id used on
Felipe Leme28afe0e2017-03-17 11:37:27 -0700299 * {@link View#autofill(android.util.SparseArray)}.
Felipe Leme6d553872016-12-08 17:13:25 -0800300 */
Felipe Lemef8a81742017-03-17 18:05:01 -0700301 public abstract void setAutofillId(@NonNull ViewStructure parent, int virtualId);
Felipe Leme6d553872016-12-08 17:13:25 -0800302
303 /**
Felipe Leme8931e302017-03-06 13:44:35 -0800304 * Sets the {@link View#getAutofillType()} that can be used to autofill this node.
305 */
306 public abstract void setAutofillType(@View.AutofillType int type);
307
308 /**
Felipe Leme640f30a2017-03-06 15:44:06 -0800309 * Sets the a hint that helps the autofill service to select the appropriate data to fill the
Philip P. Moltmannba6f4622017-02-22 11:03:53 -0800310 * view.
311 */
Philip P. Moltmann495cadd2017-03-10 16:45:02 -0800312 public abstract void setAutofillHint(@Nullable String[] hint);
Philip P. Moltmannba6f4622017-02-22 11:03:53 -0800313
314 /**
Felipe Leme640f30a2017-03-06 15:44:06 -0800315 * Sets the {@link AutofillValue} representing the current value of this node.
Felipe Leme0200d9e2017-01-24 15:10:26 -0800316 */
Felipe Leme640f30a2017-03-06 15:44:06 -0800317 public abstract void setAutofillValue(AutofillValue value);
Felipe Leme0200d9e2017-01-24 15:10:26 -0800318
319 /**
Felipe Leme640f30a2017-03-06 15:44:06 -0800320 * Sets the options that can be used to autofill this node.
Felipe Lemed09ccb82017-02-22 15:02:03 -0800321 *
Felipe Leme640f30a2017-03-06 15:44:06 -0800322 * <p>Typically used by nodes whose {@link View#getAutofillType()} is a list to indicate the
323 * meaning of each possible value in the list.
Felipe Lemed09ccb82017-02-22 15:02:03 -0800324 */
Felipe Leme640f30a2017-03-06 15:44:06 -0800325 public abstract void setAutofillOptions(String[] options);
Felipe Lemed09ccb82017-02-22 15:02:03 -0800326
327 /**
Felipe Leme16aafc32017-02-27 13:41:37 -0800328 * Sets the {@link android.text.InputType} bits of this node.
329 *
330 * @param inputType inputType bits as defined by {@link android.text.InputType}.
331 */
332 public abstract void setInputType(int inputType);
333
334 /**
Felipe Lemec9a19b12017-03-13 18:05:22 -0700335 * Sets whether the data on this node is sensitive; if it is, then its content (text, autofill
336 * value, etc..) is striped before calls to {@link
Felipe Leme640f30a2017-03-06 15:44:06 -0800337 * android.service.autofill.AutofillService#onFillRequest(android.app.assist.AssistStructure,
Felipe Leme2ac463e2017-03-13 14:06:25 -0700338 * Bundle, int, android.os.CancellationSignal, android.service.autofill.FillCallback)}.
Felipe Leme0200d9e2017-01-24 15:10:26 -0800339 *
Felipe Lemec9a19b12017-03-13 18:05:22 -0700340 * <p>By default, all nodes are assumed to be sensitive, and only nodes that does not have PII
341 * (Personally Identifiable Information - sensitive data such as email addresses, credit card
342 * numbers, passwords, etc...) should be marked as non-sensitive; a good rule of thumb is to
343 * mark as non-sensitive nodes whose value were statically set from resources.
344 *
345 * <p>Notice that the content of even sensitive nodes are sent to the service (through the
346 * {@link
347 * android.service.autofill.AutofillService#onSaveRequest(android.app.assist.AssistStructure,
Felipe Leme2ac463e2017-03-13 14:06:25 -0700348 * Bundle, android.service.autofill.SaveCallback)} call) when the user consented to save
349 * thedata, so it is important to set the content of sensitive nodes as well, but mark them as
Felipe Lemec9a19b12017-03-13 18:05:22 -0700350 * sensitive.
Felipe Leme33791fd2017-02-16 08:07:56 -0800351 *
Felipe Leme640f30a2017-03-06 15:44:06 -0800352 * <p>Should only be set when the node is used for autofill purposes - it will be ignored
Felipe Leme33791fd2017-02-16 08:07:56 -0800353 * when used for Assist.
Felipe Leme0200d9e2017-01-24 15:10:26 -0800354 */
Felipe Lemec9a19b12017-03-13 18:05:22 -0700355 public abstract void setDataIsSensitive(boolean sensitive);
Felipe Leme0200d9e2017-01-24 15:10:26 -0800356
357 /**
Dianne Hackborn02beb412015-05-19 11:18:16 -0700358 * Call when done populating a {@link ViewStructure} returned by
359 * {@link #asyncNewChild}.
360 */
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700361 public abstract void asyncCommit();
362
363 /** @hide */
364 public abstract Rect getTempRect();
Felipe Leme29a5b0d2016-10-25 14:57:11 -0700365
366 /** @hide */
Felipe Leme640f30a2017-03-06 15:44:06 -0800367 public abstract void setAutofillId(int viewId);
Felipe Leme6d553872016-12-08 17:13:25 -0800368
369 /** @hide */
Felipe Leme640f30a2017-03-06 15:44:06 -0800370 public abstract AutofillId getAutofillId();
Felipe Lemec3241002017-02-15 12:55:11 -0800371
372 /**
373 * Sets the URL represented by this node.
374 *
375 * <p>Typically used in the following situations:
376 *
377 * <ol>
378 * <li>In a {@link android.app.assist.AssistStructure.WindowNode#getRootViewNode()}, to set up
379 * the main URL of an HTML page.
380 * <li>On child nodes represening hyperlinks.
381 * </ol>
382 */
383 public abstract void setUrl(String url);
Felipe Lemeb4ca7012017-03-22 18:30:07 -0700384
385 /**
386 * Sets the the list of locales associated with this node.
387 */
388 public abstract void setLocaleList(LocaleList localeList);
Dianne Hackborn49b043f2015-05-07 14:21:38 -0700389}