Searched refs:getLayoutDirection (Results 1 - 25 of 141) sorted by relevance

123456

/frameworks/support/compat/api23/android/support/v4/graphics/drawable/
H A DDrawableCompatApi23.java29 public static int getLayoutDirection(Drawable drawable) { method in class:DrawableCompatApi23
30 return drawable.getLayoutDirection();
/frameworks/support/compat/jellybean-mr1/android/support/v4/view/
H A DMarginLayoutParamsCompatJellybeanMr1.java43 public static int getLayoutDirection(ViewGroup.MarginLayoutParams lp) { method in class:MarginLayoutParamsCompatJellybeanMr1
44 return lp.getLayoutDirection();
H A DViewCompatJellybeanMr1.java40 public static int getLayoutDirection(View view) { method in class:ViewCompatJellybeanMr1
41 return view.getLayoutDirection();
/frameworks/support/compat/jellybean-mr1/android/support/v4/widget/
H A DTextViewCompatJbMr1.java30 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
37 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
44 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
50 final boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
/frameworks/support/compat/java/android/support/v4/view/
H A DMarginLayoutParamsCompat.java34 int getLayoutDirection(ViewGroup.MarginLayoutParams lp); method in interface:MarginLayoutParamsCompat.MarginLayoutParamsCompatImpl
67 public int getLayoutDirection(ViewGroup.MarginLayoutParams lp) { method in class:MarginLayoutParamsCompat.MarginLayoutParamsCompatImplBase
110 public int getLayoutDirection(ViewGroup.MarginLayoutParams lp) { method in class:MarginLayoutParamsCompat.MarginLayoutParamsCompatImplJbMr1
111 return MarginLayoutParamsCompatJellybeanMr1.getLayoutDirection(lp);
210 public static int getLayoutDirection(ViewGroup.MarginLayoutParams lp) { method in class:MarginLayoutParamsCompat
211 int result = IMPL.getLayoutDirection(lp);
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
H A DDrawableLayoutDirectionHelper.java37 && view.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
51 context.getResources().getConfiguration().getLayoutDirection();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DThemePreviewNavigationBar.java45 ((BridgeContext) context).getConfiguration().getLayoutDirection() ==
/frameworks/support/compat/tests/java/android/support/v4/view/
H A DMarginLayoutParamsCompatTest.java36 MarginLayoutParamsCompat.getLayoutDirection(mlp));
41 MarginLayoutParamsCompat.getLayoutDirection(mlp));
45 MarginLayoutParamsCompat.getLayoutDirection(mlp));
50 MarginLayoutParamsCompat.getLayoutDirection(mlp));
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DWrappedRecyclerView.java103 public int getLayoutDirection() { method in class:WrappedRecyclerView
105 return super.getLayoutDirection();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcherScrim.java56 boolean isLtr = getLayoutDirection() == LayoutDirection.LTR;
102 boolean isLtr = getLayoutDirection() == LayoutDirection.LTR;
/frameworks/support/compat/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java53 int getLayoutDirection(Drawable drawable); method in interface:DrawableCompat.DrawableImpl
115 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.BaseDrawableImpl
173 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.JellybeanMr1DrawableImpl
174 final int dir = DrawableCompatJellybeanMr1.getLayoutDirection(drawable);
276 public int getLayoutDirection(Drawable drawable) { method in class:DrawableCompat.MDrawableImpl
277 return DrawableCompatApi23.getLayoutDirection(drawable);
529 * @see #getLayoutDirection(Drawable)
542 public static int getLayoutDirection(@NonNull Drawable drawable) { method in class:DrawableCompat
543 return IMPL.getLayoutDirection(drawable);
/frameworks/support/compat/jellybean-mr1/android/support/v4/graphics/drawable/
H A DDrawableCompatJellybeanMr1.java64 public static int getLayoutDirection(Drawable drawable) { method in class:DrawableCompatJellybeanMr1
67 sGetLayoutDirectionMethod = Drawable.class.getDeclaredMethod("getLayoutDirection");
70 Log.i(TAG, "Failed to retrieve getLayoutDirection() method", e);
79 Log.i(TAG, "Failed to invoke getLayoutDirection() via reflection", e);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DGuidedStepRootLayout.java54 if (getLayoutDirection() == ViewGroup.LAYOUT_DIRECTION_LTR ?
/frameworks/base/core/java/android/transition/
H A DSidePropagation.java125 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
128 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
H A DSlide.java92 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
120 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DActionPresenterSelector.java63 return new ActionViewHolder(v, parent.getLayoutDirection());
85 return new ActionViewHolder(v, parent.getLayoutDirection());
H A DHorizontalHoverCardSwitcher.java51 boolean isRtl = ViewCompat.getLayoutDirection(view) == View.LAYOUT_DIRECTION_RTL;
H A DTitleHelper.java48 final boolean isRtl = ViewCompat.getLayoutDirection(focused) ==
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DReverseLinearLayout.java85 boolean isLayoutRtl = getLayoutDirection() == LAYOUT_DIRECTION_RTL;
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DLinearLayoutManagerActivity.java77 return ViewCompat.getLayoutDirection(mRecyclerView) ==
H A DGridLayoutManagerActivity.java80 return ViewCompat.getLayoutDirection(mRecyclerView) ==
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DLinearLayoutManagerActivity.java77 return ViewCompat.getLayoutDirection(mRecyclerView) ==
H A DGridLayoutManagerActivity.java80 return ViewCompat.getLayoutDirection(mRecyclerView) ==
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DViewUtils.java57 return ViewCompat.getLayoutDirection(view) == ViewCompat.LAYOUT_DIRECTION_RTL;
/frameworks/base/core/java/android/view/
H A DViewParent.java393 * Return this view parent layout direction. See {@link View#getLayoutDirection()}
398 public int getLayoutDirection(); method in interface:ViewParent

Completed in 988 milliseconds

123456