Home | History | Annotate | Download | only in res

Lines Matching defs:Configuration

27  * This class describes all device configuration information that can
29 * user-specified configuration options (locale and scaling) as well
34 * <pre>Configuration config = getResources().getConfiguration();</pre>
36 public final class Configuration implements Parcelable, Comparable<Configuration> {
122 * Check if the Configuration's current {@link #screenLayout} is at
291 * Construct an invalid Configuration. You must call {@link #setToDefaults}
294 public Configuration() {
301 public Configuration(Configuration o) {
305 public void setTo(Configuration o) {
481 * Copy the fields from delta into this Configuration object, keeping
484 * Configuration.
488 public int updateFrom(Configuration delta) {
597 * Return a bit mask of the differences between this Configuration
600 * @return Returns a bit mask indicating which configuration
625 public int diff(Configuration delta) {
694 * configuration changes returned by {@link #updateFrom(Configuration)}.
697 * {@link #updateFrom(Configuration)}.
698 * @param interestingChanges The configuration changes that the resource
712 public boolean isOtherSeqNewer(Configuration other) {
807 public static final Parcelable.Creator<Configuration> CREATOR
808 = new Parcelable.Creator<Configuration>() {
809 public Configuration createFromParcel(Parcel source) {
810 return new Configuration(source);
813 public Configuration[] newArray(int size) {
814 return new Configuration[size];
819 * Construct this Configuration object, reading from the Parcel.
821 private Configuration(Parcel source) {
825 public int compareTo(Configuration that) {
874 public boolean equals(Configuration that) {
882 return equals((Configuration)that);