Java Code Examples for androidx.core.graphics.drawable.DrawableCompat#isAutoMirrored()

The following examples show how to use androidx.core.graphics.drawable.DrawableCompat#isAutoMirrored() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DrawableWrapper.java    From MHViewer with Apache License 2.0 4 votes vote down vote up
public boolean isAutoMirrored() {
  return DrawableCompat.isAutoMirrored(this.mDrawable);
}
 
Example 2
Source File: ComparableDrawableWrapper.java    From litho with Apache License 2.0 4 votes vote down vote up
@Override
public boolean isAutoMirrored() {
  return DrawableCompat.isAutoMirrored(mDrawable);
}
 
Example 3
Source File: DrawableWrapper.java    From MaterialPreference with Apache License 2.0 4 votes vote down vote up
@Override
public boolean isAutoMirrored() {
    return DrawableCompat.isAutoMirrored(mDrawable);
}
 
Example 4
Source File: PaddingDrawable.java    From material with Apache License 2.0 4 votes vote down vote up
@Override
public boolean isAutoMirrored() {
    return mDrawable != null && DrawableCompat.isAutoMirrored(mDrawable);
}
 
Example 5
Source File: DrawableWrapper.java    From EhViewer with Apache License 2.0 4 votes vote down vote up
public boolean isAutoMirrored() {
  return DrawableCompat.isAutoMirrored(this.mDrawable);
}