1 /* 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 17 package android.view; 18 19 import android.annotation.NonNull; 20 import android.annotation.Nullable; 21 import android.graphics.Matrix; 22 import android.graphics.Rect; 23 import android.os.Bundle; 24 import android.os.LocaleList; 25 import android.util.Pair; 26 import android.view.View.AutofillImportance; 27 import android.view.autofill.AutofillId; 28 import android.view.autofill.AutofillValue; 29 30 import com.android.internal.util.Preconditions; 31 32 import java.util.List; 33 34 /** 35 * <p><code>ViewStructure</code> is a container for storing additional 36 * per-view data generated by {@link View#onProvideStructure 37 * View.onProvideStructure} and {@link View#onProvideAutofillStructure 38 * View.onProvideAutofillStructure}. 39 * 40 * <p>To learn more about using Autofill in your app, read the 41 * <a href="/guide/topics/text/autofill">Autofill Framework</a> guides. 42 * 43 */ 44 public abstract class ViewStructure { 45 46 /** 47 * Set the identifier for this view. 48 * 49 * @param id The view's identifier, as per {@link View#getId View.getId()}. 50 * @param packageName The package name of the view's identifier, or null if there is none. 51 * @param typeName The type name of the view's identifier, or null if there is none. 52 * @param entryName The entry name of the view's identifier, or null if there is none. 53 */ setId(int id, String packageName, String typeName, String entryName)54 public abstract void setId(int id, String packageName, String typeName, String entryName); 55 56 /** 57 * 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 */ setDimens(int left, int top, int scrollX, int scrollY, int width, int height)68 public abstract void setDimens(int left, int top, int scrollX, int scrollY, int width, 69 int height); 70 71 /** 72 * Set the transformation matrix associated with this view, as per 73 * {@link View#getMatrix View.getMatrix()}, or null if there is none. 74 */ setTransformation(Matrix matrix)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 */ setElevation(float elevation)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 */ setAlpha(float alpha)91 public abstract void setAlpha(float alpha); 92 93 /** 94 * Set the visibility state of this view, as per 95 * {@link View#getVisibility View.getVisibility()}. 96 */ setVisibility(int visibility)97 public abstract void setVisibility(int visibility); 98 99 /** @hide */ setAssistBlocked(boolean state)100 public abstract void setAssistBlocked(boolean state); 101 102 /** 103 * Set the enabled state of this view, as per {@link View#isEnabled View.isEnabled()}. 104 */ setEnabled(boolean state)105 public abstract void setEnabled(boolean state); 106 107 /** 108 * Set the clickable state of this view, as per {@link View#isClickable View.isClickable()}. 109 */ setClickable(boolean state)110 public abstract void setClickable(boolean state); 111 112 /** 113 * Set the long clickable state of this view, as per 114 * {@link View#isLongClickable View.isLongClickable()}. 115 */ setLongClickable(boolean state)116 public abstract void setLongClickable(boolean state); 117 118 /** 119 * Set the context clickable state of this view, as per 120 * {@link View#isContextClickable View.isContextClickable()}. 121 */ setContextClickable(boolean state)122 public abstract void setContextClickable(boolean state); 123 124 /** 125 * Set the focusable state of this view, as per {@link View#isFocusable View.isFocusable()}. 126 */ setFocusable(boolean state)127 public abstract void setFocusable(boolean state); 128 129 /** 130 * Set the focused state of this view, as per {@link View#isFocused View.isFocused()}. 131 */ setFocused(boolean state)132 public abstract void setFocused(boolean state); 133 134 /** 135 * Set the accessibility focused state of this view, as per 136 * {@link View#isAccessibilityFocused View.isAccessibilityFocused()}. 137 */ setAccessibilityFocused(boolean state)138 public abstract void setAccessibilityFocused(boolean state); 139 140 /** 141 * Set the checkable state of this view, such as whether it implements the 142 * {@link android.widget.Checkable} interface. 143 */ setCheckable(boolean state)144 public abstract void setCheckable(boolean state); 145 146 /** 147 * Set the checked state of this view, such as 148 * {@link android.widget.Checkable#isChecked Checkable.isChecked()}. 149 */ setChecked(boolean state)150 public abstract void setChecked(boolean state); 151 152 /** 153 * Set the selected state of this view, as per {@link View#isSelected View.isSelected()}. 154 */ setSelected(boolean state)155 public abstract void setSelected(boolean state); 156 157 /** 158 * Set the activated state of this view, as per {@link View#isActivated View.isActivated()}. 159 */ setActivated(boolean state)160 public abstract void setActivated(boolean state); 161 162 /** 163 * Set the opaque state of this view, as per {@link View#isOpaque View.isOpaque()}. 164 */ setOpaque(boolean opaque)165 public abstract void setOpaque(boolean opaque); 166 167 /** 168 * Set the class name of the view, as per 169 * {@link View#getAccessibilityClassName View.getAccessibilityClassName()}. 170 */ setClassName(String className)171 public abstract void setClassName(String className); 172 173 /** 174 * Set the content description of the view, as per 175 * {@link View#getContentDescription View.getContentDescription()}. 176 */ setContentDescription(CharSequence contentDescription)177 public abstract void setContentDescription(CharSequence contentDescription); 178 179 /** 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 */ setText(CharSequence text)184 public abstract void setText(CharSequence text); 185 186 /** 187 * Like {@link #setText(CharSequence)} but with an active selection 188 * extending from <var>selectionStart</var> through <var>selectionEnd</var>. 189 */ setText(CharSequence text, int selectionStart, int selectionEnd)190 public abstract void setText(CharSequence text, int selectionStart, int selectionEnd); 191 192 /** 193 * 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. 199 * @param style Style flags, as defined by {@link android.app.assist.AssistStructure.ViewNode}. 200 */ setTextStyle(float size, int fgColor, int bgColor, int style)201 public abstract void setTextStyle(float size, int fgColor, int bgColor, int style); 202 203 /** 204 * 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 */ setTextLines(int[] charOffsets, int[] baselines)212 public abstract void setTextLines(int[] charOffsets, int[] baselines); 213 214 /** 215 * Sets the identifier used to set the text associated with this view. 216 * 217 * <p>Should only be set when the node is used for autofill purposes - it will be ignored 218 * when used for Assist. 219 */ setTextIdEntry(@onNull String entryName)220 public void setTextIdEntry(@NonNull String entryName) { 221 Preconditions.checkNotNull(entryName); 222 } 223 224 /** 225 * Set optional hint text associated with this view; this is for example the text that is 226 * shown by an EditText when it is empty to indicate to the user the kind of text to input. 227 */ setHint(CharSequence hint)228 public abstract void setHint(CharSequence hint); 229 230 /** 231 * Sets the identifier used to set the hint associated with this view. 232 * 233 * <p>Used as metadata for fingerprinting view nodes/structures. 234 * 235 * <p>Should only be set when the node is used for autofill purposes - it will be ignored 236 * when used for Assist. 237 */ setHintIdEntry(@onNull String entryName)238 public void setHintIdEntry(@NonNull String entryName) { 239 Preconditions.checkNotNull(entryName); 240 } 241 242 /** 243 * Retrieve the last {@link #setText(CharSequence)}. 244 */ getText()245 public abstract CharSequence getText(); 246 247 /** 248 * Retrieve the last selection start set by {@link #setText(CharSequence, int, int)}. 249 */ getTextSelectionStart()250 public abstract int getTextSelectionStart(); 251 252 /** 253 * Retrieve the last selection end set by {@link #setText(CharSequence, int, int)}. 254 */ getTextSelectionEnd()255 public abstract int getTextSelectionEnd(); 256 257 /** 258 * Retrieve the last hint set by {@link #setHint}. 259 */ getHint()260 public abstract CharSequence getHint(); 261 262 /** 263 * Get extra data associated with this view structure; the returned Bundle is mutable, 264 * allowing you to view and modify its contents. Keys placed in the Bundle should use 265 * an appropriate namespace prefix (such as com.google.MY_KEY) to avoid conflicts. 266 */ getExtras()267 public abstract Bundle getExtras(); 268 269 /** 270 * Returns true if {@link #getExtras} has been used to create extra content. 271 */ hasExtras()272 public abstract boolean hasExtras(); 273 274 /** 275 * Set the number of children of this view, which defines the range of indices you can 276 * use with {@link #newChild} and {@link #asyncNewChild}. Calling this method again 277 * resets all of the child state of the view, removing any children that had previously 278 * been added. 279 */ setChildCount(int num)280 public abstract void setChildCount(int num); 281 282 /** 283 * Add to this view's child count. This increases the current child count by 284 * <var>num</var> children beyond what was last set by {@link #setChildCount} 285 * or {@link #addChildCount}. The index at which the new child starts in the child 286 * array is returned. 287 * 288 * @param num The number of new children to add. 289 * @return Returns the index in the child array at which the new children start. 290 */ addChildCount(int num)291 public abstract int addChildCount(int num); 292 293 /** 294 * Return the child count as set by {@link #setChildCount}. 295 */ getChildCount()296 public abstract int getChildCount(); 297 298 /** 299 * Create a new child {@link ViewStructure} in this view, putting into the list of 300 * children at <var>index</var>. 301 * 302 * <p><b>NOTE: </b>you must pre-allocate space for the child first, by calling either 303 * {@link #addChildCount(int)} or {@link #setChildCount(int)}. 304 * 305 * @return Returns an fresh {@link ViewStructure} ready to be filled in. 306 */ newChild(int index)307 public abstract ViewStructure newChild(int index); 308 309 /** 310 * Like {@link #newChild}, but allows the caller to asynchronously populate the returned 311 * child. It can transfer the returned {@link ViewStructure} to another thread for it 312 * to build its content (and children etc). Once done, some thread must call 313 * {@link #asyncCommit} to tell the containing {@link ViewStructure} that the async 314 * population is done. 315 * 316 * <p><b>NOTE: </b>you must pre-allocate space for the child first, by calling either 317 * {@link #addChildCount(int)} or {@link #setChildCount(int)}. 318 * 319 * @return Returns an fresh {@link ViewStructure} ready to be filled in. 320 */ asyncNewChild(int index)321 public abstract ViewStructure asyncNewChild(int index); 322 323 /** 324 * Gets the {@link AutofillId} associated with this node. 325 */ 326 @Nullable getAutofillId()327 public abstract AutofillId getAutofillId(); 328 329 /** 330 * Sets the {@link AutofillId} associated with this node. 331 */ setAutofillId(@onNull AutofillId id)332 public abstract void setAutofillId(@NonNull AutofillId id); 333 334 /** 335 * Sets the {@link AutofillId} for this virtual node. 336 * 337 * @param parentId id of the parent node. 338 * @param virtualId an opaque ID to the Android System; it's the same id used on 339 * {@link View#autofill(android.util.SparseArray)}. 340 */ setAutofillId(@onNull AutofillId parentId, int virtualId)341 public abstract void setAutofillId(@NonNull AutofillId parentId, int virtualId); 342 343 /** 344 * Sets the {@link View#getAutofillType()} that can be used to autofill this node. 345 */ setAutofillType(@iew.AutofillType int type)346 public abstract void setAutofillType(@View.AutofillType int type); 347 348 /** 349 * Sets the a hints that helps the autofill service to select the appropriate data to fill the 350 * view. 351 */ setAutofillHints(@ullable String[] hint)352 public abstract void setAutofillHints(@Nullable String[] hint); 353 354 /** 355 * Sets the {@link AutofillValue} representing the current value of this node. 356 */ setAutofillValue(AutofillValue value)357 public abstract void setAutofillValue(AutofillValue value); 358 359 /** 360 * Sets the options that can be used to autofill this node. 361 * 362 * <p>Typically used by nodes whose {@link View#getAutofillType()} is a list to indicate the 363 * meaning of each possible value in the list. 364 */ setAutofillOptions(CharSequence[] options)365 public abstract void setAutofillOptions(CharSequence[] options); 366 367 /** 368 * Sets the {@link View#setImportantForAutofill(int) importantForAutofill mode} of the 369 * view associated with this node. 370 */ setImportantForAutofill(@utofillImportance int mode)371 public void setImportantForAutofill(@AutofillImportance int mode) {} 372 373 /** 374 * Sets the {@link android.text.InputType} bits of this node. 375 * 376 * @param inputType inputType bits as defined by {@link android.text.InputType}. 377 */ setInputType(int inputType)378 public abstract void setInputType(int inputType); 379 380 /** 381 * Sets whether the data on this node is sensitive; if it is, then its content (text, autofill 382 * value, etc..) is striped before calls to {@link 383 * android.service.autofill.AutofillService#onFillRequest(android.service.autofill.FillRequest, 384 * android.os.CancellationSignal, android.service.autofill.FillCallback)}. 385 * 386 * <p>By default, all nodes are assumed to be sensitive, and only nodes that does not have PII 387 * (Personally Identifiable Information - sensitive data such as email addresses, credit card 388 * numbers, passwords, etc...) should be marked as non-sensitive; a good rule of thumb is to 389 * mark as non-sensitive nodes whose value were statically set from resources. 390 * 391 * <p>Notice that the content of even sensitive nodes are sent to the service (through the 392 * {@link 393 * android.service.autofill.AutofillService#onSaveRequest(android.service.autofill.SaveRequest, 394 * android.service.autofill.SaveCallback)} call) when the user consented to save 395 * thedata, so it is important to set the content of sensitive nodes as well, but mark them as 396 * sensitive. 397 * 398 * <p>Should only be set when the node is used for autofill purposes - it will be ignored 399 * when used for Assist. 400 */ setDataIsSensitive(boolean sensitive)401 public abstract void setDataIsSensitive(boolean sensitive); 402 403 /** 404 * Sets the minimum width in ems of the text associated with this view, when supported. 405 * 406 * <p>Should only be set when the node is used for autofill purposes - it will be ignored 407 * when used for Assist. 408 */ setMinTextEms(@uppressWarnings"unused") int minEms)409 public void setMinTextEms(@SuppressWarnings("unused") int minEms) {} 410 411 /** 412 * Sets the maximum width in ems of the text associated with this view, when supported. 413 * 414 * <p>Should only be set when the node is used for autofill purposes - it will be ignored 415 * when used for Assist. 416 */ setMaxTextEms(@uppressWarnings"unused") int maxEms)417 public void setMaxTextEms(@SuppressWarnings("unused") int maxEms) {} 418 419 /** 420 * Sets the maximum length of the text associated with this view, when supported. 421 * 422 * <p>Should only be set when the node is used for autofill purposes - it will be ignored 423 * when used for Assist. 424 */ setMaxTextLength(@uppressWarnings"unused") int maxLength)425 public void setMaxTextLength(@SuppressWarnings("unused") int maxLength) {} 426 427 /** 428 * Call when done populating a {@link ViewStructure} returned by 429 * {@link #asyncNewChild}. 430 */ asyncCommit()431 public abstract void asyncCommit(); 432 433 /** @hide */ getTempRect()434 public abstract Rect getTempRect(); 435 436 /** 437 * Sets the Web domain represented by this node. 438 * 439 * <p>Typically used when the view is a container for an HTML document. 440 * 441 * @param domain RFC 2396-compliant URI representing the domain. 442 */ setWebDomain(@ullable String domain)443 public abstract void setWebDomain(@Nullable String domain); 444 445 /** 446 * Sets the the list of locales associated with this node. 447 */ setLocaleList(LocaleList localeList)448 public abstract void setLocaleList(LocaleList localeList); 449 450 /** 451 * Creates a new {@link HtmlInfo.Builder} for the given HTML tag. 452 * 453 * @param tagName name of the HTML tag. 454 * @return a new builder. 455 */ newHtmlInfoBuilder(@onNull String tagName)456 public abstract HtmlInfo.Builder newHtmlInfoBuilder(@NonNull String tagName); 457 458 /** 459 * Sets the HTML properties of this node when it represents an HTML element. 460 * 461 * <p>Should only be set when the node is used for autofill purposes - it will be ignored 462 * when used for assist. 463 * 464 * @param htmlInfo HTML properties. 465 */ setHtmlInfo(@onNull HtmlInfo htmlInfo)466 public abstract void setHtmlInfo(@NonNull HtmlInfo htmlInfo); 467 468 /** 469 * Simplified representation of the HTML properties of a node that represents an HTML element. 470 */ 471 public abstract static class HtmlInfo { 472 473 /** 474 * Gets the HTML tag. 475 */ 476 @NonNull getTag()477 public abstract String getTag(); 478 479 /** 480 * Gets the list of HTML attributes. 481 * 482 * @return list of key/value pairs; could contain pairs with the same keys. 483 */ 484 @Nullable getAttributes()485 public abstract List<Pair<String, String>> getAttributes(); 486 487 /** 488 * Builder for {@link HtmlInfo} objects. 489 */ 490 public abstract static class Builder { 491 492 /** 493 * Adds an HTML attribute. 494 * 495 * @param name name of the attribute. 496 * @param value value of the attribute. 497 * @return same builder, for chaining. 498 */ addAttribute(@onNull String name, @NonNull String value)499 public abstract Builder addAttribute(@NonNull String name, @NonNull String value); 500 501 /** 502 * Builds the {@link HtmlInfo} object. 503 * 504 * @return a new {@link HtmlInfo} instance. 505 */ build()506 public abstract HtmlInfo build(); 507 } 508 } 509 } 510