Home | History | Annotate | Download | only in res

Lines Matching defs:Configuration

28  * This class describes all device configuration information that can
30 * user-specified configuration options (locale and scaling) as well
35 * <pre>Configuration config = getResources().getConfiguration();</pre>
37 public final class Configuration implements Parcelable, Comparable<Configuration> {
152 * Check if the Configuration's current {@link #screenLayout} is at
422 * Construct an invalid Configuration. You must call {@link #setToDefaults}
425 public Configuration() {
432 public Configuration(Configuration o) {
436 public void setTo(Configuration o) {
614 * Copy the fields from delta into this Configuration object, keeping
617 * Configuration.
621 public int updateFrom(Configuration delta) {
730 * Return a bit mask of the differences between this Configuration
733 * @return Returns a bit mask indicating which configuration
758 public int diff(Configuration delta) {
827 * configuration changes returned by {@link #updateFrom(Configuration)}.
830 * {@link #updateFrom(Configuration)}.
831 * @param interestingChanges The configuration changes that the resource
845 public boolean isOtherSeqNewer(Configuration other) {
940 public static final Parcelable.Creator<Configuration> CREATOR
941 = new Parcelable.Creator<Configuration>() {
942 public Configuration createFromParcel(Parcel source) {
943 return new Configuration(source);
946 public Configuration[] newArray(int size) {
947 return new Configuration[size];
952 * Construct this Configuration object, reading from the Parcel.
954 private Configuration(Parcel source) {
958 public int compareTo(Configuration that) {
1007 public boolean equals(Configuration that) {
1015 return equals((Configuration)that);