Home
last modified time | relevance | path

Searched refs:drawerLayout (Results 1 – 8 of 8) sorted by relevance

/frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
DDrawerLayoutActions.java163 DrawerLayout drawerLayout = (DrawerLayout) view;
164 drawerLayout.openDrawer(drawerEdgeGravity, animate);
188 DrawerLayout drawerLayout = (DrawerLayout) view;
189 drawerLayout.openDrawer(drawerEdgeGravity);
213 DrawerLayout drawerLayout = (DrawerLayout) view;
214 drawerLayout.openDrawer(drawerView);
238 DrawerLayout drawerLayout = (DrawerLayout) view;
239 drawerLayout.closeDrawer(drawerEdgeGravity);
263 DrawerLayout drawerLayout = (DrawerLayout) view;
264 drawerLayout.closeDrawer(drawerEdgeGravity, animate);
[all …]
/frameworks/support/core-ui/api21/android/support/v4/widget/
DDrawerLayoutCompatApi21.java39 public static void configureApplyInsets(View drawerLayout) { in configureApplyInsets() argument
40 if (drawerLayout instanceof DrawerLayoutImpl) { in configureApplyInsets()
41 drawerLayout.setOnApplyWindowInsetsListener(new InsetsListener()); in configureApplyInsets()
42 drawerLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE in configureApplyInsets()
91 final DrawerLayoutImpl drawerLayout = (DrawerLayoutImpl) v; in onApplyWindowInsets() local
92 drawerLayout.setChildInsets(insets, insets.getSystemWindowInsetTop() > 0); in onApplyWindowInsets()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
DDrawerLayoutUtil.java38 public static void openDrawer(View drawerLayout, @Nullable String drawerGravity) { in openDrawer() argument
50 openDrawer(drawerLayout, gravity); in openDrawer()
54 private static void openDrawer(View drawerLayout, int gravity) { in openDrawer() argument
56 invoke(getMethod(drawerLayout.getClass(), "openDrawer", int.class), drawerLayout, in openDrawer() local
/frameworks/support/design/tests/src/android/support/design/testutils/
DDrawerLayoutActions.java47 DrawerLayout drawerLayout = (DrawerLayout) view; in openDrawer() local
48 drawerLayout.openDrawer(drawerEdgeGravity); in openDrawer()
75 DrawerLayout drawerLayout = (DrawerLayout) view;
76 drawerLayout.closeDrawer(drawerEdgeGravity);
/frameworks/support/wear/src/android/support/wear/widget/drawer/
DWearableDrawerController.java28 WearableDrawerController(WearableDrawerLayout drawerLayout, WearableDrawerView drawerView) { in WearableDrawerController() argument
29 mDrawerLayout = drawerLayout; in WearableDrawerController()
/frameworks/support/v7/appcompat/src/android/support/v7/app/
DActionBarDrawerToggle.java150 public ActionBarDrawerToggle(Activity activity, DrawerLayout drawerLayout, in ActionBarDrawerToggle() argument
153 this(activity, null, drawerLayout, null, openDrawerContentDescRes, in ActionBarDrawerToggle()
181 public ActionBarDrawerToggle(Activity activity, DrawerLayout drawerLayout, in ActionBarDrawerToggle() argument
184 this(activity, toolbar, drawerLayout, null, openDrawerContentDescRes, in ActionBarDrawerToggle()
193 ActionBarDrawerToggle(Activity activity, Toolbar toolbar, DrawerLayout drawerLayout, in ActionBarDrawerToggle() argument
220 mDrawerLayout = drawerLayout; in ActionBarDrawerToggle()
/frameworks/support/core-ui/java/android/support/v4/app/
DActionBarDrawerToggle.java216 public ActionBarDrawerToggle(Activity activity, DrawerLayout drawerLayout, in ActionBarDrawerToggle() argument
219 this(activity, drawerLayout, !assumeMaterial(activity), drawerImageRes, in ActionBarDrawerToggle()
249 public ActionBarDrawerToggle(Activity activity, DrawerLayout drawerLayout, boolean animate, in ActionBarDrawerToggle() argument
261 mDrawerLayout = drawerLayout; in ActionBarDrawerToggle()
/frameworks/support/core-ui/java/android/support/v4/widget/
DDrawerLayout.java291 void configureApplyInsets(View drawerLayout); in configureApplyInsets() argument
300 public void configureApplyInsets(View drawerLayout) { in configureApplyInsets() argument
328 public void configureApplyInsets(View drawerLayout) { in configureApplyInsets() argument
329 DrawerLayoutCompatApi21.configureApplyInsets(drawerLayout); in configureApplyInsets()