HomeSort by relevance Sort by last modified time
    Searched defs:LayoutParams (Results 51 - 75 of 151) sorted by null

1 23 4 5 6 7

  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java 48 * {@link LinearLayoutCompat.LayoutParams LinearLayoutCompat.LayoutParams}.
55 * Also see {@link LinearLayoutCompat.LayoutParams} for layout attributes </p>
301 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
314 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
329 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
351 final LayoutParams lp = (LayoutParams) child.getLayoutParams()
    [all...]
Toolbar.java 95 * {@link LayoutParams} indicates a {@link Gravity} value of
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
GridLayoutManager.java 145 ViewGroup.LayoutParams lp = host.getLayoutParams();
146 if (!(lp instanceof LayoutParams)) {
150 LayoutParams glp = (LayoutParams) lp;
191 final LayoutParams lp = (LayoutParams) getChildAt(i).getLayoutParams();
225 public RecyclerView.LayoutParams generateDefaultLayoutParams() {
227 return new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,
228 ViewGroup.LayoutParams.MATCH_PARENT)
    [all...]
RecyclerView.java     [all...]
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 609 ((LayoutParams) optScrap.getLayoutParams()).viewType : -1;
621 ViewGroup.LayoutParams lp = view.getLayoutParams();
632 final LayoutParams sglp = (LayoutParams) lp;
678 protected LayoutParams generateDefaultLayoutParams() {
679 return new LayoutParams(LayoutParams.WRAP_CONTENT);
683 protected LayoutParams generateLayoutParams(ViewGroup.LayoutParams lp) {
684 return new LayoutParams(lp)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DragLayer.java 458 public LayoutParams generateLayoutParams(AttributeSet attrs) {
459 return new LayoutParams(getContext(), attrs);
463 protected LayoutParams generateDefaultLayoutParams() {
464 return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
467 // Override to allow type-checking of LayoutParams.
469 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
470 return p instanceof LayoutParams;
474 protected LayoutParams generateLayoutParams(ViewGroup.LayoutParams p)
    [all...]
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 50 * <p>Item views may span multiple columns as specified by their {@link LayoutParams}.
514 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
759 LayoutParams lp = (LayoutParams) child.getLayoutParams();
771 lp = (LayoutParams) child.getLayoutParams(); // Might have changed
781 if (lp.height == LayoutParams.WRAP_CONTENT) {
843 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
    [all...]
  /frameworks/support/core-ui/java/android/support/v4/widget/
SlidingPaneLayout.java 508 // First pass. Measure based on child LayoutParams width/height.
512 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
529 if (lp.width == LayoutParams.WRAP_CONTENT) {
532 } else if (lp.width == LayoutParams.MATCH_PARENT) {
540 if (lp.height == LayoutParams.WRAP_CONTENT) {
542 } else if (lp.height == LayoutParams.MATCH_PARENT) {
574 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
590 if (lp.height == LayoutParams.WRAP_CONTENT)
    [all...]
DrawerLayout.java 679 final int gravity = ((LayoutParams) drawerView.getLayoutParams()).gravity;
752 final int drawerGravity = ((LayoutParams) drawerView.getLayoutParams()).gravity;
814 final LayoutParams lp = (LayoutParams) activeDrawer.getLayoutParams();
837 final LayoutParams lp = (LayoutParams) drawerView.getLayoutParams();
838 if ((lp.openState & LayoutParams.FLAG_IS_OPENED) == 1) {
    [all...]
  /frameworks/base/core/java/android/widget/
GridLayout.java 76 * by their {@link GridLayout.LayoutParams#rowSpec rowSpec} and
77 * {@link GridLayout.LayoutParams#columnSpec columnSpec} layout parameters.
121 * {@link LayoutParams#setGravity(int) gravity} property of the child's layout parameters.
159 * See {@link GridLayout.LayoutParams} for a full description of the
231 * the quantity {@code top - layoutParams.topMargin} is the same for all children that
374 * value of each the upper bounds defined in {@link LayoutParams#rowSpec}.
379 * @see LayoutParams#rowSpec
394 * @see LayoutParams#rowSpec
407 * value of each the upper bounds defined in {@link LayoutParams#columnSpec}.
412 * @see LayoutParams#columnSpe
    [all...]
Toolbar.java 87 * {@link LayoutParams} indicates a {@link Gravity} value of
    [all...]
AbsListView.java     [all...]
  /frameworks/support/design/src/android/support/design/widget/
CoordinatorLayout.java 100 * {@link CoordinatorLayout.LayoutParams#setAnchorId(int) anchor}. This view id must correspond
105 * <p>Children can specify {@link CoordinatorLayout.LayoutParams#insetEdge} to describe how the
107 * {@link CoordinatorLayout.LayoutParams#dodgeInsetEdges} will be moved appropriately so that the
378 final Behavior b = ((LayoutParams) mBehaviorTouchView.getLayoutParams()).getBehavior();
392 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
433 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
523 final LayoutParams lp = (LayoutParams) mBehaviorTouchView.getLayoutParams()
    [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 72 * by their {@link GridLayout.LayoutParams#rowSpec rowSpec} and
73 * {@link GridLayout.LayoutParams#columnSpec columnSpec} layout parameters.
116 * {@link LayoutParams#setGravity(int) gravity} property of the child's layout parameters.
155 * See {@link GridLayout.LayoutParams} for a full description of the
216 * the quantity {@code top - layoutParams.topMargin} is the same for all children that
363 * value of each the upper bounds defined in {@link LayoutParams#rowSpec}.
368 * @see LayoutParams#rowSpec
383 * @see LayoutParams#rowSpec
396 * value of each the upper bounds defined in {@link LayoutParams#columnSpec}.
401 * @see LayoutParams#columnSpe
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 607 public static class LayoutParams extends ViewGroup.LayoutParams {
616 public LayoutParams(int width, int height) {
620 public LayoutParams(Context context, AttributeSet attrs) {
624 public LayoutParams(ViewGroup.LayoutParams source) {
630 public LayoutParams generateLayoutParams(AttributeSet attrs) {
631 return new LayoutParams(getContext(), attrs);
635 protected LayoutParams generateDefaultLayoutParams() {
636 return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)
    [all...]
CellLayout.java 135 @Thunk HashMap<CellLayout.LayoutParams, Animator> mReorderAnimators = new HashMap<>();
607 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
609 final LayoutParams lp = params;
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GridLayoutManager.java 58 * LayoutParams for {@link HorizontalGridView} and {@link VerticalGridView}.
63 final static class LayoutParams extends RecyclerView.LayoutParams {
77 public LayoutParams(Context c, AttributeSet attrs) {
81 public LayoutParams(int width, int height) {
85 public LayoutParams(MarginLayoutParams source) {
89 public LayoutParams(ViewGroup.LayoutParams source) {
93 public LayoutParams(RecyclerView.LayoutParams source)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 126 private HashMap<CellLayout.LayoutParams, Animator> mReorderAnimators = new
127 HashMap<CellLayout.LayoutParams, Animator>();
615 public boolean addViewToCellLayout(View child, int index, int childId, LayoutParams params,
617 final LayoutParams lp = params;
721 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
    [all...]
  /external/robolectric/v1/lib/main/
maps_v16.jar 
  /frameworks/base/core/java/android/view/
ViewGroup.java 76 * {@link android.view.ViewGroup.LayoutParams} class which serves as the base
81 * Also see {@link LayoutParams} for layout attributes.
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
RecyclerView.java 727 ViewGroup.LayoutParams layoutParams) {
739 RecyclerView.this.attachViewToParent(child, index, layoutParams);
    [all...]
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /prebuilts/sdk/current/support/wear/libs/
android-support-wear.jar 
  /prebuilts/sdk/current/support/core-ui/
android-support-core-ui.jar 

Completed in 760 milliseconds

1 23 4 5 6 7