List of usage examples for android.util TypedValue COMPLEX_UNIT_MASK
int COMPLEX_UNIT_MASK
To view the source code for android.util TypedValue COMPLEX_UNIT_MASK.
Click Source Link
From source file:Main.java
private static int getComplexUnit(int data) { return TypedValue.COMPLEX_UNIT_MASK & (data >> TypedValue.COMPLEX_UNIT_SHIFT); }