Home
last modified time | relevance | path

Searched refs:configChanges (Results 1 – 22 of 22) sorted by relevance

/frameworks/base/core/java/android/content/pm/
DActivityInfo.java595 ? (configChanges | ActivityInfo.CONFIG_SCREEN_SIZE in getRealConfigChanged()
597 : configChanges; in getRealConfigChanged()
611 public int configChanges; field in ActivityInfo
656 configChanges = orig.configChanges; in ActivityInfo()
697 || configChanges != 0 || softInputMode != 0) { in dump()
699 + " configChanges=0x" + Integer.toHexString(configChanges) in dump()
727 dest.writeInt(configChanges); in writeToParcel()
754 configChanges = source.readInt(); in ActivityInfo()
DPackageParser.java3104 a.info.configChanges = sa.getInt( in parseActivity()
3140 a.info.configChanges = 0; in parseActivity()
3309 info.configChanges = target.info.configChanges; in parseActivityAlias()
/frameworks/base/core/java/android/content/res/
DConfigurationBoundResourceCache.java110 public void onConfigurationChange(final int configChanges) { in onConfigurationChange() argument
116 onConfigurationChangeInt(themeCache, configChanges); in onConfigurationChange()
126 final int configChanges) { in onConfigurationChangeInt() argument
132 configChanges, constantState.getChangingConfigurations())) { in onConfigurationChangeInt()
DResources.java1798 int configChanges = calcConfigChanges(config); in updateConfiguration() local
1844 clearDrawableCachesLocked(mDrawableCache, configChanges); in updateConfiguration()
1845 clearDrawableCachesLocked(mColorDrawableCache, configChanges); in updateConfiguration()
1846 mAnimatorCache.onConfigurationChange(configChanges); in updateConfiguration()
1847 mStateListAnimatorCache.onConfigurationChange(configChanges); in updateConfiguration()
1864 int configChanges = 0xfffffff; in calcConfigChanges() local
1878 configChanges = mConfiguration.updateFrom(mTmpConfig); in calcConfigChanges()
1879 configChanges = ActivityInfo.activityInfoConfigToNative(configChanges); in calcConfigChanges()
1881 return configChanges; in calcConfigChanges()
1886 int configChanges) { in clearDrawableCachesLocked() argument
[all …]
DConfiguration.java1076 public static boolean needNewResources(int configChanges, int interestingChanges) { in needNewResources() argument
1077 return (configChanges & (interestingChanges|ActivityInfo.CONFIG_FONT_SCALE)) != 0; in needNewResources()
/frameworks/base/core/java/android/app/
DIApplicationThread.java53 int configChanges, boolean dontReport) throws RemoteException; in schedulePauseActivity() argument
55 int configChanges) throws RemoteException; in scheduleStopActivity() argument
68 List<ReferrerIntent> pendingNewIntents, int configChanges, in scheduleRelaunchActivity() argument
72 int configChanges) throws RemoteException; in scheduleDestroyActivity() argument
DApplicationThreadNative.java81 int configChanges = data.readInt(); in onTransact() local
83 schedulePauseActivity(b, finished, userLeaving, configChanges, dontReport); in onTransact()
92 int configChanges = data.readInt(); in onTransact() local
93 scheduleStopActivity(b, show, configChanges); in onTransact()
168 int configChanges = data.readInt(); in onTransact() local
174 scheduleRelaunchActivity(b, ri, pi, configChanges, notResumed, config); in onTransact()
192 int configChanges = data.readInt(); in onTransact() local
193 scheduleDestroyActivity(b, finishing, configChanges); in onTransact()
696 boolean userLeaving, int configChanges, boolean dontReport) throws RemoteException { in schedulePauseActivity() argument
702 data.writeInt(configChanges); in schedulePauseActivity()
[all …]
DActivityThread.java581 boolean userLeaving, int configChanges, boolean dontReport) { in schedulePauseActivity() argument
586 configChanges); in schedulePauseActivity()
590 int configChanges) { in scheduleStopActivity() argument
593 token, 0, configChanges); in scheduleStopActivity()
657 int configChanges, boolean notResumed, Configuration config) { in scheduleRelaunchActivity() argument
659 configChanges, notResumed, config, true); in scheduleRelaunchActivity()
671 int configChanges) { in scheduleDestroyActivity() argument
673 configChanges); in scheduleDestroyActivity()
3185 boolean userLeaving, int configChanges, boolean dontReport) { in handlePauseActivity() argument
3193 r.activity.mConfigChangeFlags |= configChanges; in handlePauseActivity()
[all …]
/frameworks/base/core/java/android/view/
DIWindowManager.aidl83 int configChanges, boolean voiceInteraction, boolean launchTaskBehind); in addAppToken() argument
106 void startAppFreezingScreen(IBinder token, int configChanges); in startAppFreezingScreen() argument
/frameworks/base/docs/html/guide/topics/resources/
Druntime-changes.jd196 android:configChanges}</a> attribute with a value that represents the configuration you want to
199 android:configChanges}</a> attribute (the most commonly used values are {@code "orientation"} to
209 android:configChanges="orientation|keyboardHidden"
232 android:configChanges="orientation|screenSize"}. However, if your application targets API level
289 android:configChanges}</a> documentation and the {@link android.content.res.Configuration}
/frameworks/base/docs/html-intl/intl/ja/training/tv/start/
Dhardware.jd290 <strong>android:configChanges="keyboard|keyboardHidden|navigation"</strong>
/frameworks/base/services/core/java/com/android/server/am/
DActivityStack.java1186 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) { in ensureActivitiesVisibleLocked() argument
1193 + " configChanges=0x" + Integer.toHexString(configChanges)); in ensureActivitiesVisibleLocked()
1241 r.startFreezingScreenLocked(r.app, configChanges); in ensureActivitiesVisibleLocked()
1293 configChanges |= r.configChangeFlags; in ensureActivitiesVisibleLocked()
1965 r.userId, r.info.configChanges, task.voiceSession != null, in startActivityLocked()
2029 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind); in startActivityLocked()
2081 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind); in startActivityLocked()
DActivityRecord.java847 public void startFreezingScreenLocked(ProcessRecord app, int configChanges) { in startFreezingScreenLocked() argument
849 service.mWindowManager.startAppFreezingScreen(appToken, configChanges); in startFreezingScreenLocked()
DActivityStackSupervisor.java2668 r.userId, r.info.configChanges, task.voiceSession != null, in restoreRecentTaskLocked()
2945 void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) { in ensureActivitiesVisibleLocked() argument
2952 stack.ensureActivitiesVisibleLocked(starting, configChanges); in ensureActivitiesVisibleLocked()
/frameworks/base/docs/html/guide/topics/manifest/
Duses-configuration-element.jd177 …<li><code><a href="{@docRoot}guide/topics/manifest/activity-element.html#config">configChanges</a>…
Dactivity-element.jd14 android:<a href="#config">configChanges</a>=["mcc", "mnc", "locale",
214 <dt><a name="config"></a>{@code android:configChanges}</dt>
/frameworks/base/docs/html/training/tv/start/
Dhardware.jd408 <strong>android:configChanges="keyboard|keyboardHidden|navigation"</strong>
/frameworks/base/docs/html/about/versions/
Dandroid-3.2.jd355 in {@link android.R.attr#configChanges}. The bits indicate whether an Activity can
Dandroid-4.0.jd1768 android:configChanges}</a> for more information.</li>
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java3629 int configChanges, boolean voiceInteraction, boolean launchTaskBehind) { in addAppToken() argument
3661 atoken.layoutConfigChanges = (configChanges & in addAppToken()
4726 public void startAppFreezingScreen(IBinder token, int configChanges) { in startAppFreezingScreen() argument
4733 if (configChanges == 0 && okToDisplay()) { in startAppFreezingScreen()
/frameworks/base/api/
Dsystem-current.txt504 field public static final int configChanges = 16842783; // 0x101001f
8589 field public int configChanges;
Dcurrent.txt434 field public static final int configChanges = 16842783; // 0x101001f
8343 field public int configChanges;