HomeSort by relevance Sort by last modified time
    Searched refs:getLayoutDirection (Results 1 - 25 of 249) sorted by null

1 2 3 4 5 6 7 8 910

  /cts/tests/tests/widget/src/android/widget/cts/
LayoutDirectionTest.java 58 assertEquals(LAYOUT_DIRECTION_LTR, vg.getLayoutDirection());
73 assertEquals(LAYOUT_DIRECTION_LTR, vg.getLayoutDirection());
76 assertEquals(LAYOUT_DIRECTION_RTL, vg.getLayoutDirection());
80 assertEquals(LAYOUT_DIRECTION_LTR, vg.getLayoutDirection());
84 assertEquals(LAYOUT_DIRECTION_LTR, vg.getLayoutDirection());
105 assertEquals(LAYOUT_DIRECTION_LTR, parent.getLayoutDirection());
106 assertEquals(LAYOUT_DIRECTION_LTR, child.getLayoutDirection());
111 assertEquals(LAYOUT_DIRECTION_RTL, parent.getLayoutDirection());
112 assertEquals(LAYOUT_DIRECTION_RTL, child.getLayoutDirection());
132 assertEquals(parentResDir, ll.getLayoutDirection());
    [all...]
  /packages/apps/TV/src/com/android/tv/guide/
TimelineRow.java 55 * (getLayoutDirection() == LAYOUT_DIRECTION_LTR ? 1 : -1);
83 return (getLayoutDirection() == LAYOUT_DIRECTION_LTR) ? FADING_EDGE_STRENGTH_START : 0;
88 return (getLayoutDirection() == LAYOUT_DIRECTION_RTL) ? FADING_EDGE_STRENGTH_START : 0;
  /frameworks/support/compat/java/android/support/v4/view/
MarginLayoutParamsCompat.java 125 public static int getLayoutDirection(ViewGroup.MarginLayoutParams lp) {
128 result = lp.getLayoutDirection();
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
ThemePreviewNavigationBar.java 45 ((BridgeContext) context).getConfiguration().getLayoutDirection() ==
  /frameworks/support/compat/tests/java/android/support/v4/view/
MarginLayoutParamsCompatTest.java 36 MarginLayoutParamsCompat.getLayoutDirection(mlp));
41 MarginLayoutParamsCompat.getLayoutDirection(mlp));
45 MarginLayoutParamsCompat.getLayoutDirection(mlp));
50 MarginLayoutParamsCompat.getLayoutDirection(mlp));
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
DrawableLayoutDirectionHelper.java 39 && view.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
54 context.getResources().getConfiguration().getLayoutDirection();
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
WrappedRecyclerView.java 101 public int getLayoutDirection() {
103 return super.getLayoutDirection();
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigurationTest.java 421 assertEquals(View.LAYOUT_DIRECTION_LTR, config.getLayoutDirection());
426 assertEquals(View.LAYOUT_DIRECTION_LTR, config.getLayoutDirection());
432 assertEquals(View.LAYOUT_DIRECTION_RTL, config.getLayoutDirection());
438 assertEquals(View.LAYOUT_DIRECTION_RTL, config.getLayoutDirection());
444 assertEquals(View.LAYOUT_DIRECTION_RTL, config.getLayoutDirection());
450 assertEquals(View.LAYOUT_DIRECTION_RTL, config.getLayoutDirection());
457 assertEquals(View.LAYOUT_DIRECTION_LTR, config.getLayoutDirection());
460 assertEquals(View.LAYOUT_DIRECTION_LTR, config.getLayoutDirection());
464 assertEquals(View.LAYOUT_DIRECTION_RTL, config.getLayoutDirection());
468 assertEquals(View.LAYOUT_DIRECTION_RTL, config.getLayoutDirection());
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyguardUserSwitcherScrim.java 56 boolean isLtr = getLayoutDirection() == LayoutDirection.LTR;
102 boolean isLtr = getLayoutDirection() == LayoutDirection.LTR;
  /frameworks/base/core/java/android/view/autofill/
AutofillPopupWindow.java 139 public int getLayoutDirection() {
140 return anchor.getLayoutDirection();
196 final int layoutDirection = anchor != null ? anchor.getLayoutDirection()
223 anchor.getLayoutDirection());
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
GuidedStepRootLayout.java 54 if (getLayoutDirection() == ViewGroup.LAYOUT_DIRECTION_LTR
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListPinnedHeaderView.java 56 setLayoutDirection(parent.getLayoutDirection());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupStepIndicatorView.java 41 final int layoutDirection = ViewCompat.getLayoutDirection(this);
  /frameworks/base/core/java/android/transition/
SidePropagation.java 125 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
128 final boolean isRtl = sceneRoot.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
  /frameworks/support/core-ui/tests/java/android/support/v4/testutils/
TestUtilsMatchers.java 118 final int parentLayoutDirection = ViewCompat.getLayoutDirection(parentGroup);
164 final int parentLayoutDirection = ViewCompat.getLayoutDirection(parentGroup);
  /frameworks/support/transition/src/android/support/transition/
SidePropagation.java 125 final boolean isRtl = ViewCompat.getLayoutDirection(sceneRoot)
129 final boolean isRtl = ViewCompat.getLayoutDirection(sceneRoot)
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ActionPresenterSelector.java 63 return new ActionViewHolder(v, parent.getLayoutDirection());
85 return new ActionViewHolder(v, parent.getLayoutDirection());
HorizontalHoverCardSwitcher.java 50 boolean isRtl = ViewCompat.getLayoutDirection(view) == ViewCompat.LAYOUT_DIRECTION_RTL;
NonOverlappingLinearLayout.java 66 && getLayoutDirection() == LAYOUT_DIRECTION_RTL;
TitleHelper.java 48 final boolean isRtl = ViewCompat.getLayoutDirection(focused)
  /packages/apps/TV/src/com/android/tv/dvr/ui/browse/
ActionPresenterSelector.java 70 return new ActionViewHolder(v, parent.getLayoutDirection());
92 return new ActionViewHolder(v, parent.getLayoutDirection());
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
LinearLayoutManagerActivity.java 81 return ViewCompat.getLayoutDirection(mRecyclerView) ==
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ViewUtils.java 57 return ViewCompat.getLayoutDirection(view) == ViewCompat.LAYOUT_DIRECTION_RTL;
  /packages/apps/Contacts/src/com/android/contacts/util/
ViewUtil.java 57 return view.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
  /packages/apps/Dialer/java/com/android/contacts/common/list/
ContactListPinnedHeaderView.java 53 setLayoutDirection(parent.getLayoutDirection());

Completed in 321 milliseconds

1 2 3 4 5 6 7 8 910