CoordinateBase
Enumeration CoordinateBase describes the camera position.
@IntDef({CB_IMAGE,CB_VIEW})
@Retention(RetentionPolicy.CLASS)
public @interface EnumCoordinateBase {
// pixel, percentage
int CB_IMAGE = 0;
// DP
int CB_VIEW = 1;
}