Searched defs:sGetLayoutDirectionMethod (Results 1 - 1 of 1) sorted by path

/frameworks/support/compat/java/android/support/v4/graphics/drawable/
H A DDrawableCompat.java134 private static Method sGetLayoutDirectionMethod; field in class:DrawableCompat.DrawableCompatApi17Impl
166 sGetLayoutDirectionMethod = Drawable.class.getDeclaredMethod("getLayoutDirection");
167 sGetLayoutDirectionMethod.setAccessible(true);
174 if (sGetLayoutDirectionMethod != null) {
176 return (int) sGetLayoutDirectionMethod.invoke(drawable);
179 sGetLayoutDirectionMethod = null;

Completed in 82 milliseconds