Home | History | Annotate | Download | only in testdata
      1 Code completion in completion12.xml for <include ^/>:
      2 layout : [reference]. * Required.
      3 style : A reference to a custom style  [reference]
      4 android:id : Supply an identifier name for this view, to later retrieve it  with View.findViewById() or Activity.findViewById().  [reference]
      5 android:tag : Supply a tag for this view containing a String, to be retrieved  later with View.getTag() or searched for with View.findViewWithTag() .  [string]
      6 android:scrollX : The initial horizontal scroll offset, in pixels.  [dimension]
      7 android:scrollY : The initial vertical scroll offset, in pixels.  [dimension]
      8 android:background : A drawable to use as the background.  [color, reference]
      9 android:padding : Sets the padding, in pixels, of all four edges.  [dimension]
     10 android:paddingLeft : Sets the padding, in pixels, of the left edge; see padding.  [dimension]
     11 android:paddingTop : Sets the padding, in pixels, of the top edge; see padding.  [dimension]
     12 android:paddingRight : Sets the padding, in pixels, of the right edge; see padding.  [dimension]
     13 android:paddingBottom : Sets the padding, in pixels, of the bottom edge; see padding.  [dimension]
     14 android:paddingStart : Sets the padding, in pixels, of the start edge; see padding.  [dimension]
     15 android:paddingEnd : Sets the padding, in pixels, of the end edge; see padding.  [dimension]
     16 android:focusable : Boolean that controls whether a view can take focus.  [boolean]
     17 android:focusableInTouchMode : Boolean that controls whether a view can take focus while in  touch mode.  [boolean]
     18 android:visibility : Controls the initial visibility of the view.  [enum]
     19 android:fitsSystemWindows : Boolean internal attribute to adjust view layout based on system  windows such as the status bar.  [boolean]
     20 android:scrollbars : Defines which scrollbars should be displayed on scrolling or  not.  [flag]
     21 android:scrollbarStyle : Controls the scrollbar style and position.  [enum]
     22 android:isScrollContainer : Set this if the view will serve as a scrolling container, meaing  that it can be resized to shrink its overall window so that there  will be space for an input method.  [boolean]
     23 android:fadeScrollbars : Defines whether to fade out scrollbars when they are not in use.  [boolean]
     24 android:scrollbarFadeDuration : Defines the delay in milliseconds that a scrollbar takes to fade  out.  [integer]
     25 android:scrollbarDefaultDelayBeforeFade : Defines the delay in milliseconds that a scrollbar waits before  fade out.  [integer]
     26 android:scrollbarSize : Sets the width of vertical scrollbars and height of horizontal  scrollbars.  [dimension]
     27 android:scrollbarThumbHorizontal : Defines the horizontal scrollbar thumb drawable.  [reference]
     28 android:scrollbarThumbVertical : Defines the vertical scrollbar thumb drawable.  [reference]
     29 android:scrollbarTrackHorizontal : Defines the horizontal scrollbar track drawable.  [reference]
     30 android:scrollbarTrackVertical : Defines the vertical scrollbar track drawable.  [reference]
     31 android:scrollbarAlwaysDrawHorizontalTrack : Defines whether the horizontal scrollbar track should always  be drawn.  [boolean]
     32 android:scrollbarAlwaysDrawVerticalTrack : Defines whether the vertical scrollbar track should always be  drawn.  [boolean]
     33 android:fadingEdge : This attribute is deprecated and will be ignored as of API level  14 (ICE_CREAM_SANDWICH).  [flag]
     34 android:requiresFadingEdge : Defines which edges should be faded on scrolling.  [flag]
     35 android:fadingEdgeLength : Defines the length of the fading edges.  [dimension]
     36 android:nextFocusLeft : Defines the next view to give focus to when the next focus is FOCUS_LEFT.  [reference]
     37 android:nextFocusRight : Defines the next view to give focus to when the next focus is FOCUS_RIGHT If the reference refers to a view that does not exist or is  part of a hierarchy that is invisible, a java.lang.RuntimeException will result when the  reference is accessed.  [reference]
     38 android:nextFocusUp : Defines the next view to give focus to when the next focus is FOCUS_UP If the reference refers to a view that does not exist or is  part of a hierarchy that is invisible, a java.lang.RuntimeException will result when the  reference is accessed.  [reference]
     39 android:nextFocusDown : Defines the next view to give focus to when the next focus is FOCUS_DOWN If the reference refers to a view that does not exist or is  part of a hierarchy that is invisible, a java.lang.RuntimeException will result when the  reference is accessed.  [reference]
     40 android:nextFocusForward : Defines the next view to give focus to when the next focus is FOCUS_FORWARD If the reference refers to a view that does not exist or is  part of a hierarchy that is invisible, a java.lang.RuntimeException will result when the  reference is accessed.  [reference]
     41 android:clickable : Defines whether this view reacts to click events.  [boolean]
     42 android:longClickable : Defines whether this view reacts to long click events.  [boolean]
     43 android:saveEnabled : If unset, no state will be saved for this view when it is being  frozen.  [boolean]
     44 android:filterTouchesWhenObscured : Specifies whether to filter touches when the view's window is  obscured by another visible window.  [boolean]
     45 android:drawingCacheQuality : Defines the quality of translucent drawing caches.  [enum]
     46 android:keepScreenOn : Controls whether the view's window should keep the screen on  while visible.  [boolean]
     47 android:duplicateParentState : When this attribute is set to true, the view gets its drawable  state (focused, pressed, etc.) from its direct parent rather  than from itself.  [boolean]
     48 android:minHeight : Defines the minimum height of the view.
     49 android:minWidth : Defines the minimum width of the view.
     50 android:soundEffectsEnabled : Boolean that controls whether a view should have sound effects  enabled for events such as clicking and touching.  [boolean]
     51 android:hapticFeedbackEnabled : Boolean that controls whether a view should have haptic feedback  enabled for events such as long presses.  [boolean]
     52 android:contentDescription : Defines text that briefly describes content of the view.  [string]
     53 android:onClick : Name of the method in this View's context to invoke when the  view is clicked.  [string]
     54 android:overScrollMode : Defines over-scrolling behavior.  [enum]
     55 android:alpha : alpha property of the view, as a value between 0 (completely  transparent) and 1 (completely opaque).  [float]
     56 android:translationX : translation in x of the view.  [dimension]
     57 android:translationY : translation in y of the view.  [dimension]
     58 android:transformPivotX : x location of the pivot point around which the view will rotate  and scale.  [dimension]
     59 android:transformPivotY : y location of the pivot point around which the view will rotate  and scale.  [dimension]
     60 android:rotation : rotation of the view, in degrees.  [float]
     61 android:rotationX : rotation of the view around the x axis, in degrees.  [float]
     62 android:rotationY : rotation of the view around the y axis, in degrees.  [float]
     63 android:scaleX : scale of the view in the x direction.  [float]
     64 android:scaleY : scale of the view in the y direction.  [float]
     65 android:verticalScrollbarPosition : Determines which side the vertical scroll bar should be placed  on.  [enum]
     66 android:layerType : Specifies the type of layer backing this view.  [enum]
     67 android:layoutDirection : Defines the direction of layout drawing.  [enum]
     68 android:textDirection : Direction of the text.  [integer, enum]
     69 android:textAlignment : Alignment of the text.  [integer, enum]
     70 android:importantForAccessibility : Controls how this View is important for accessibility which is  if it fires accessibility events and if it is reported to accessibility  services that query the screen.  [integer, enum]
     71 android:layout_toLeftOf : Positions the right edge of this view to the left of the given  anchor view ID.  [reference]
     72 android:layout_toRightOf : Positions the left edge of this view to the right of the given  anchor view ID.  [reference]
     73 android:layout_above : Positions the bottom edge of this view above the given anchor  view ID.  [reference]
     74 android:layout_below : Positions the top edge of this view below the given anchor view  ID.  [reference]
     75 android:layout_alignBaseline : Positions the baseline of this view on the baseline of the given  anchor view ID.  [reference]
     76 android:layout_alignLeft : Makes the left edge of this view match the left edge of the given  anchor view ID.  [reference]
     77 android:layout_alignTop : Makes the top edge of this view match the top edge of the given  anchor view ID.  [reference]
     78 android:layout_alignRight : Makes the right edge of this view match the right edge of the  given anchor view ID.  [reference]
     79 android:layout_alignBottom : Makes the bottom edge of this view match the bottom edge of the  given anchor view ID.  [reference]
     80 android:layout_alignParentLeft : If true, makes the left edge of this view match the left edge  of the parent.  [boolean]
     81 android:layout_alignParentTop : If true, makes the top edge of this view match the top edge of  the parent.  [boolean]
     82 android:layout_alignParentRight : If true, makes the right edge of this view match the right edge  of the parent.  [boolean]
     83 android:layout_alignParentBottom : If true, makes the bottom edge of this view match the bottom  edge of the parent.  [boolean]
     84 android:layout_centerInParent : If true, centers this child horizontally and vertically within  its parent.  [boolean]
     85 android:layout_centerHorizontal : If true, centers this child horizontally within its parent.  [boolean]
     86 android:layout_centerVertical : If true, centers this child vertically within its parent.  [boolean]
     87 android:layout_alignWithParentIfMissing : If set to true, the parent will be used as the anchor when the  anchor cannot be be found for layout_toLeftOf, layout_toRightOf,  etc.  [boolean]
     88 android:layout_width : Specifies the basic width of the view.  [dimension, enum]
     89 android:layout_height : Specifies the basic height of the view.  [dimension, enum]
     90 android:layout_margin : Specifies extra space on the left, top, right and bottom sides  of this view.  [dimension]
     91 android:layout_marginLeft : Specifies extra space on the left side of this view.  [dimension]
     92 android:layout_marginTop : Specifies extra space on the top side of this view.  [dimension]
     93 android:layout_marginRight : Specifies extra space on the right side of this view.  [dimension]
     94 android:layout_marginBottom : Specifies extra space on the bottom side of this view.  [dimension]
     95 android:layout_marginStart : Specifies extra space on the start side of this view.  [dimension]
     96 android:layout_marginEnd : Specifies extra space on the end side of this view.  [dimension]
     97