1 min readDec 12, 2017
Thanks for reaching out!
I didn’t think it would take effect, simply because I expected constants to be declared in hex format, like gravity constants are declared in Gravity.java.
public static final int NO_GRAVITY = 0x0000;
public static final int AXIS_SPECIFIED = 0x0001;
public static final int AXIS_PULL_BEFORE = 0x0002;
public static final int AXIS_PULL_AFTER = 0x0004;
public static final int AXIS_CLIP = 0x0008;
Turns out it works as expected. Thanks again for reaching out, will update the post.