Home | History | Annotate | Download | only in view

Lines Matching refs:Configuration

23 import android.content.res.Configuration;
34 private Configuration mOverrideConfiguration;
84 * Call to set an "override configuration" on this context -- this is
85 * a configuration that replies one or more values of the standard
86 * configuration that is applied to the context. See
87 * {@link Context#createConfigurationContext(Configuration)} for more
93 public void applyOverrideConfiguration(Configuration overrideConfiguration) {
99 throw new IllegalStateException("Override configuration has already been set");
101 mOverrideConfiguration = new Configuration(overrideConfiguration);
105 * Used by ActivityThread to apply the overridden configuration to onConfigurationChange
109 public Configuration getOverrideConfiguration() {
115 // Ensure we're returning assets with the correct configuration.