/frameworks/base/core/java/android/content/res/ |
D | Configuration.java | 1586 public static Configuration generateDelta(Configuration base, Configuration change) { in generateDelta() argument 1588 if (base.fontScale != change.fontScale) { in generateDelta() 1589 delta.fontScale = change.fontScale; in generateDelta() 1592 if (base.mcc != change.mcc) { in generateDelta() 1593 delta.mcc = change.mcc; in generateDelta() 1596 if (base.mnc != change.mnc) { in generateDelta() 1597 delta.mnc = change.mnc; in generateDelta() 1600 if ((base.locale == null && change.locale != null) || in generateDelta() 1601 (base.locale != null && !base.locale.equals(change.locale))) { in generateDelta() 1602 delta.locale = change.locale; in generateDelta() [all …]
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | runtime-changes.jd | 18 …<li><a href="http://android-developers.blogspot.com/2009/02/faster-screen-orientation-change.html"… 24 <p>Some device configurations can change during runtime 25 (such as screen orientation, keyboard availability, and language). When such a change occurs, 54 <li><a href="#RetainingAnObject">Retain an object during a configuration change</a> 59 <li><a href="#HandlingTheChange">Handle the configuration change yourself</a> 61 changes, but receive a callback when the configurations do change, so that you can manually update 70 connection, or perform other intensive operations, then a full restart due to a configuration change 75 deserialized, which can consume a lot of memory and make the configuration change slow. In such a 77 android.app.Fragment} when your activity is restarted due to a configuration change. This fragment 80 <p>When the Android system shuts down your activity due to a configuration change, the fragments [all …]
|
D | animation-resource.jd | 456 <dd><em>Float</em>. Starting X size offset, where 1.0 is no change.</dd> 458 <dd><em>Float</em>. Ending X size offset, where 1.0 is no change.</dd> 460 <dd><em>Float</em>. Starting Y size offset, where 1.0 is no change.</dd> 462 <dd><em>Float</em>. Ending Y size offset, where 1.0 is no change.</dd> 586 <p>An interpolator is an animation modifier defined in XML that affects the rate of change in an 689 <dd>The rate of change starts and ends slowly but accelerates through the 692 <dd>The rate of change starts out slowly, then accelerates. 700 <dd>The change starts backward then flings forward. 708 <dd>The change starts backward, flings forward and overshoots the target value, then 720 <dd>The change bounces at the end. <p>No attributes</p></dd> [all …]
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
D | BarController.java | 138 final boolean change = show ? mWin.showLw(true) : mWin.hideLw(true); in setBarShowingLw() 139 final int state = computeStateLw(wasVis, wasAnim, mWin, change); in setBarShowingLw() 141 return change || stateChanged; in setBarShowingLw() 144 private int computeStateLw(boolean wasVis, boolean wasAnim, WindowState win, boolean change) { in computeStateLw() argument 148 if (mState == StatusBarManager.WINDOW_STATE_HIDING && !change && !vis) { in computeStateLw() 152 } else if (change) { in computeStateLw()
|
/frameworks/base/docs/html/tools/testing/ |
D | what_to_test.jd | 21 For devices that support multiple orientations, Android detects a change in orientation when 26 When Android detects a change in orientation, its default behavior is to destroy and then 42 A situation that is more general than a change in orientation is a change in the device's 43 configuration, such as a change in the availability of a keyboard or a change in system 47 A change in configuration also triggers the default behavior of destroying and then restarting
|
/frameworks/opt/telephony/ |
D | README.txt | 14 A related change was in DataConnectionAc I added code that 22 thread. Without this change there was a dead lock when 47 On debuggable builds (userdebug, eng) you can change additional 61 could change it to perform 4 retries at 5 second intervals:
|
/frameworks/testing/uiautomator/library/ |
D | apicheck_msg_last.txt | 3 You have tried to change the API from what has been previously released in
|
D | apicheck_msg_current.txt | 3 You have tried to change the API from what has been previously approved.
|
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/ |
D | VoiceInteractionManagerService.java | 702 int change = isPackageDisappearing(curInteractor.getPackageName()); 703 if (change == PACKAGE_PERMANENT_CHANGE) { 712 change = isPackageAppearing(curInteractor.getPackageName()); 713 if (change != PACKAGE_UNCHANGED) { 725 int change = isPackageDisappearing(curRecognizer.getPackageName()); 726 if (change == PACKAGE_PERMANENT_CHANGE 727 || change == PACKAGE_TEMPORARY_CHANGE) {
|
/frameworks/base/docs/html/guide/topics/ui/controls/ |
D | togglebutton.jd | 23 <p>A toggle button allows the user to change a setting between two states.</p> 93 <p class="note"><strong>Tip:</strong> If you need to change the state 96 android.widget.CompoundButton#toggle()} method to change the state.</p>
|
/frameworks/base/samples/training/network-usage/ |
D | README.txt | 13 -- Detects when there is a change in the device's connection status and responds accordingly. For e…
|
/frameworks/testing/uiautomator/samples/SkeletonTest/ |
D | README | 18 * modify Android.mk, replace LOCAL_MODULE_NAME, change LOCAL_MODULE_TAGS if
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | GcSnapshot.java | 170 void change() { in change() method in GcSnapshot.Layer 172 mBitmap.change(); in change() 641 layer.change(); in drawInLayer() 655 layer.change(); in drawOnGraphics()
|
/frameworks/base/docs/html/training/location/ |
D | location-testing.jd | 178 a configuration change or other system event. By using a background thread, the service is able 303 car travel, because this change works out to 60 miles an hour. In comparison, changing the 304 location by 1.5 feet every second simulates brisk walking, because this change works out to 336 make a large change in position between points. 357 is completely separate from the app, you can change the data without having to rebuild the 358 app. You can also change the data on the server and have the changes reflected immediately 368 create mock locations that have an appropriate change in latitude and longitude over
|
/frameworks/base/media/lib/remotedisplay/ |
D | README.txt | 14 a shared library. So you can change the implementation, but not
|
/frameworks/base/location/lib/ |
D | README.txt | 15 a shared library. So you can change the implementation, but not
|
/frameworks/base/media/lib/signer/ |
D | README.txt | 16 a shared library. So you can change the implementation, but not
|
/frameworks/base/core/java/android/text/ |
D | DynamicLayout.java | 219 int change = look - (where + after); in reflow() local 220 before += change; in reflow() 221 after += change; in reflow()
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | uses-configuration-element.jd | 12 Seems like some API change is in the works, either eliminating the "no___" values or 13 "undefined". Since it's unclear what the change will be, I've chosen to document the "no___" 15 easier to update the doc when the change is made... Nov 2013, this still seems unresolved. -->
|
/frameworks/base/docs/html/google/play/billing/v2/ |
D | billing_reference.jd | 189 notification to retrieve the details of the purchase state change.</td> 220 <p>This request retrieves the details of a purchase state change. A purchase state change can 228 change. That is, this message confirms that you sent a <code>GET_PURCHASE_INFORMATION</code> 342 a given purchase state change. Google Play notifies you when there is a purchase state change 344 change, you send the notification ID with the <code>GET_PURCHASE_INFORMATION</code> request.</li>
|
/frameworks/base/docs/html/guide/faq/ |
D | troubleshooting.jd | 223 <li>In a terminal, change to the tools directory of the SDK.</li> 261 <p>For now, the work-around is to change the sample's package name 263 replacement for the existing GestureBuilder app. To change the 273 <li>Select <strong>Refactor > Rename</strong> and change the name, for example to 276 tag, change the package name to 304 <li>Temporarily change your development machine's locale (date and time) to one that uses a Gregori… 305 <li>Alternatively, if you do not want to change your machine's locale settings, you can generate th…
|
/frameworks/base/docs/html/guide/topics/text/ |
D | index.jd | 22 <p>We believe speech can fundamentally change the mobile experience. We would like to invite
|
/frameworks/base/docs/html/guide/topics/ui/accessibility/ |
D | checklist.jd | 69 or change the <a href="{@docRoot}guide/topics/ui/accessibility/apps.html#focus-order">focus 136 <li><strong>Controls that change function:</strong> If you have buttons or other controls 137 that change function during the normal activity of a user in your application (for example, a 139 change the <a href="{@docRoot}reference/android/view/View.html#attr_android:contentDescription">
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_image_native_buffer.txt | 101 The requirements have evolved over time and will continue to change with
|
D | EGL_ANDROID_framebuffer_target.txt | 86 Section 3.4.1, Querying Configurations, change the last paragraph as follow
|