Searched refs:resizeable (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java664 * Value indicating if the activity is resizeable to any dimension.
668 public boolean resizeable; field in class:ActivityInfo
718 resizeable = orig.resizeable;
764 pw.println(prefix + "resizeable=" + resizeable + " lockTaskLaunchMode="
794 dest.writeInt(resizeable ? 1 : 0);
823 resizeable = (source.readInt() == 1);
H A DPackageParser.java1436 int resizeable = 1;
1704 resizeable = sa.getInteger(
1706 resizeable);
1874 if (resizeable < 0 || (resizeable > 0
3182 a.info.resizeable = sa.getBoolean(
3184 if (a.info.resizeable) {
3185 // Fixed screen orientation isn't supported with resizeable activities.
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java93 private static final String ATTR_RESIZEABLE = "resizeable";
128 boolean mResizeable; // Activities in the task resizeable. Based on the resizable setting of
255 int callingUid, String callingPackage, boolean resizeable, boolean privileged) {
290 mResizeable = resizeable;
390 mResizeable = info.resizeable;
1012 boolean resizeable = false;
1068 resizeable = Boolean.valueOf(attrValue);
1130 callingUid, callingPackage, resizeable, privileged);
247 TaskRecord(ActivityManagerService service, int _taskId, Intent _intent, Intent _affinityIntent, String _affinity, String _rootAffinity, ComponentName _realActivity, ComponentName _origActivity, boolean _rootWasReset, boolean _autoRemoveRecents, boolean _askedCompatMode, int _taskType, int _userId, int _effectiveUid, String _lastDescription, ArrayList<ActivityRecord> activities, long _firstActiveTime, long _lastActiveTime, long lastTimeMoved, boolean neverRelinquishIdentity, TaskDescription _lastTaskDescription, int taskAffiliation, int prevTaskId, int nextTaskId, int taskAffiliationColor, int callingUid, String callingPackage, boolean resizeable, boolean privileged) argument
H A DActivityManagerService.java4198 // Fixed screen orientation isn't supported with resizeable activities.
8556 public void setTaskResizeable(int taskId, boolean resizeable) { argument
8563 if (task.mResizeable != resizeable) {
8564 task.mResizeable = resizeable;
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java146 " am task resizeable <TASK_ID> [true|false]\n" +
275 " all current tasks in both stacks to be resizeable.\n" +
285 "am task resizeable: change if <TASK_ID> is resizeable (true) or not (false).\n" +
288 " Forces the task to be resizeable and creates a stack if no existing stack\n" +
1984 // Make all tasks in the stacks resizeable.
2004 } else if (op.equals("resizeable")) {
2033 final boolean resizeable = Boolean.valueOf(resizeableStr);
2036 mAm.setTaskResizeable(taskId, resizeable);
/frameworks/base/core/java/android/app/
H A DIActivityManager.java487 public void setTaskResizeable(int taskId, boolean resizeable) throws RemoteException; argument
H A DActivityManagerNative.java2418 boolean resizeable = (data.readInt() == 1) ? true : false;
2419 setTaskResizeable(taskId, resizeable);
5729 public void setTaskResizeable(int taskId, boolean resizeable) throws RemoteException { argument
5734 data.writeInt(resizeable ? 1 : 0);

Completed in 326 milliseconds