/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
D | WindowManagerProxy.java | 192 public void setResizing(final boolean resizing) { in setResizing() argument 197 WindowManagerGlobal.getWindowManagerService().setDockedStackResizing(resizing); in setResizing()
|
/frameworks/base/docs/html/design/patterns/ |
D | widgets.jd | 89 <h3>Widget resizing</h3> 92 if it is constrained to horizontal or vertical size changes. You do not have to support resizing if 109 …st or grid-based collection widgets are usually straightforward because resizing the widget will s… 118 …size range in which your widget can redraw itself. Planning your widget resizing strategy across "…
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | supports-screens-element.jd | 33 Normal resizing applied by the system works well for most applications and you don't have to do any 45 have not designed for larger screen sizes and the normal resizing does not achieve the appropriate 99 on the application's part to make good use of it, though it may rely on resizing by the 111 on the application's part to make good use of it, though it may rely on resizing by the
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DockedStackDividerController.java | 253 void setResizing(boolean resizing) { in setResizing() argument 254 if (mResizing != resizing) { in setResizing() 255 mResizing = resizing; in setResizing()
|
D | TaskStack.java | 1262 void setDragResizingLocked(boolean resizing) { in setDragResizingLocked() argument 1263 if (mDragResizing == resizing) { in setDragResizingLocked() 1266 mDragResizing = resizing; in setDragResizingLocked()
|
D | WindowState.java | 2408 boolean resizing = isDragResizing() || isDragResizeChanged(); in getBackdropFrame() 2409 if (StackId.useWindowFrameForBackdrop(getStackId()) || !resizing) { in getBackdropFrame() 2544 final boolean resizing = computeDragResizing(); in setDragResizing() 2545 if (resizing == mDragResizing) { in setDragResizing() 2548 mDragResizing = resizing; in setDragResizing()
|
/frameworks/base/core/java/android/view/ |
D | IWindowManager.aidl | 389 void setDockedStackResizing(boolean resizing); in setDockedStackResizing() argument
|
/frameworks/base/docs/html/training/transitions/ |
D | overview.jd | 131 such as fading and resizing views. You can also define your own custom transitions to create 164 animate the resizing of views that contain text.</li>
|
/frameworks/base/docs/html/training/displaying-bitmaps/ |
D | index.jd | 78 <dd>Bitmap processing (resizing, downloading from a remote source, etc.) should never take place
|
D | display-bitmap.jd | 182 <p>Any additional processing (such as resizing or fetching images from the network) can take place
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
D | IWindowManagerImpl.java | 564 public void setDockedStackResizing(boolean resizing) throws RemoteException { in setDockedStackResizing() argument
|
/frameworks/base/docs/html/training/system-ui/ |
D | immersive.jd | 173 {@link android.view.View#SYSTEM_UI_FLAG_LAYOUT_STABLE}) to keep the content from resizing 176 status and navigation bars, without resizing the content:</p>
|
D | status.jd | 121 content from resizing when the status bar hides and shows.</p>
|
/frameworks/base/docs/html/guide/practices/ |
D | screen-compat-mode.jd | 101 mode (currently disabled, so normal resizing occurs).</p> 192 layout resizing. Normally, only applications that are already built against Android 3.2 (or
|
D | screens_support.jd | 76 <p>Although the system performs scaling and resizing to make your application work on 293 screens and the system will use those instead of resizing the bitmap designed for medium-density 1100 system does when resizing a bitmap to the appropriate size for the current screen
|
/frameworks/base/docs/html/training/volley/ |
D | request.jd | 54 expensive image operations (decoding, resizing) automatically happen on a worker thread.</li>
|
/frameworks/base/docs/html/training/articles/ |
D | perf-anr.jd | 99 resizing bitmaps should be done in a worker thread (or in the case of databases
|
/frameworks/base/docs/html/topic/performance/rendering/ |
D | optimizing-view-hierarchies.jd | 57 resizing to main its constraints: For example, if your app calls
|
/frameworks/base/docs/html/guide/practices/ui_guidelines/ |
D | widget_design.jd | 13 <li>App Widget layouts should be flexible, resizing to fit their parent container</li>
|
/frameworks/base/docs/html/topic/performance/ |
D | network-xfer.jd | 373 with image resizing functionality already installed.
|
/frameworks/base/docs/html/training/contacts-provider/ |
D | display-contact-badge.jd | 236 * resizing the image to the provided image dimensions as needed.
|
/frameworks/base/docs/html/guide/topics/appwidgets/ |
D | host.jd | 308 vertical resizing. Introduced in Android 4.0 (API Level 14), the widget can also specify a
|
D | index.jd | 271 vertical resizing isn't enabled (see <code>resizeMode</code>). Introduced in Android 4.0.</li> 275 horizontal resizing isn't enabled (see <code>resizeMode</code>). Introduced in Android 4.0.</li>
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | multi-window.jd | 154 If the user is resizing a window and makes it larger in either dimension, the
|
/frameworks/base/services/core/java/com/android/server/policy/ |
D | PhoneWindowManager.java | 7677 final boolean resizing = mWindowManagerInternal.isDockedDividerResizing(); 7682 mForceShowSystemBars = dockedStackVisible || freeformStackVisible || resizing; 7726 vis = configureNavBarOpacity(vis, dockedStackVisible, freeformStackVisible, resizing);
|