
net.dongliu.apk.parser.struct.ActivityInfo Maven / Gradle / Ivy
The newest version!
package net.dongliu.apk.parser.struct;
import java.util.ArrayList;
import java.util.List;
/**
* Activity constants.
* see
* http://developer.android.com/reference/android/content/pm/ActivityInfo.html
* http://developer.android.com/guide/topics/manifest/activity-element.html
*
* @author dongliu
*/
public class ActivityInfo {
public static enum ScreenOrienTation {
behind(0x00000003),
fullSensor(0x0000000a),
fullUser(0x0000000d),
landscape(0x00000000),
locked(0x0000000e),
nosensor(0x00000005),
portrait(0x00000001),
reverseLandscape(0x00000008),
reversePortrait(0x00000009),
sensor(0x00000004),
sensorLandscape(0x00000006),
sensorPortrait(0x00000007),
unspecified(0xffffffff),
user(0x00000002),
userLandscape(0x0000000b),
userPortrait(0x0000000c);
private int value;
private ScreenOrienTation(int value) {
this.value = value;
}
public static ScreenOrienTation valueOf(int value) {
for (ScreenOrienTation s : ScreenOrienTation.values()) {
if (s.value == value) {
return s;
}
}
return null;
}
}
public static enum LaunchMode {
standard(0x00000000),
singleTop(0x00000001),
singleTask(0x00000002),
singleInstance(0x00000003);
private int value;
private LaunchMode(int value) {
this.value = value;
}
public static LaunchMode valueOf(int value) {
for (LaunchMode s : LaunchMode.values()) {
if (s.value == value) {
return s;
}
}
return null;
}
}
public static enum ConfigChanges {
density(0x00001000),
fontScale(0x40000000),
keyboard(0x00000010),
keyboardHidden(0x00000020),
direction(0x00002000),
locale(0x00000004),
mcc(0x00000001),
mnc(0x00000002),
navigation(0x00000040),
orientation(0x00000080),
screenLayout(0x00000100),
screenSize(0x00000400),
smallestScreenSize(0x00000800),
touchscreen(0x00000008),
uiMode(0x00000200);
private int value;
private ConfigChanges(int value) {
this.value = value;
}
public static List valuesOf(int value) {
List list = new ArrayList();
for (ConfigChanges c : ConfigChanges.values()) {
if ((c.value & value) != 0) {
list.add(c);
}
}
return list;
}
}
public static enum WindowSoftInputMode {
adjustNothing(0x00000030),
adjustPan(0x00000020),
adjustResize(0x00000010),
adjustUnspecified(0x00000000),
//isForwardNavigation(0x00000100),
//mode_changed(0x00000200),
stateAlwaysHidden(0x00000003),
stateAlwaysVisible(0x00000005),
stateHidden(0x00000002),
stateUnchanged(0x00000001),
stateUnspecified(0x00000000),
stateVisible(0x00000004);
private static int mask_adjust = 0x000000f0;
private static int mask_state = 0x0000000f;
private int value;
private WindowSoftInputMode(int value) {
this.value = value;
}
public static List valuesOf(int value) {
List list = new ArrayList(2);
for (WindowSoftInputMode w : WindowSoftInputMode.values()) {
if (w.value == (value & mask_adjust) && w.toString().startsWith("adjust")) {
list.add(w);
}
if (w.value == (value & mask_state) && w.toString().startsWith("state")) {
list.add(w);
}
}
return list;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy