Searched defs:show (Results 76 - 100 of 106) sorted by relevance

12345

/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java66 private static final int ANIM_TARGET_TIME = 500; // Time to show targets (in ms)
256 void show(boolean animate) { method in class:SlidingTab.Slider
578 // Clear animations so sliders don't continue to animate when we show the widget again.
634 mOtherSlider.show(true);
655 int holdOffset = holdAfter ? 0 : width; // how much of tab to show at the end of anim
664 int holdOffset = holdAfter ? 0 : height; // how much of tab to show at end of anim
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryFragment.java146 show(fm, TYPE_NORMAL, root, doc, null, anim);
150 show(fm, TYPE_SEARCH, root, null, query, anim);
154 show(fm, TYPE_RECENT_OPEN, null, null, null, anim);
157 private static void show(FragmentManager fm, int type, RootInfo root, DocumentInfo doc, method in class:DirectoryFragment
336 // When launched into empty recents, show drawer
695 Toast.makeText(context, R.string.toast_failed_delete, Toast.LENGTH_SHORT).show();
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSPanel.java223 public void showDetailAdapter(boolean show, DetailAdapter adapter, int[] locationInWindow) { argument
236 showDetail(show, r);
239 private void showDetail(boolean show, Record r) { argument
240 mHandler.obtainMessage(H.SHOW_DETAIL, show ? 1 : 0, 0, r).sendToTarget();
287 public void onShowDetail(boolean show) {
288 QSPanel.this.showDetail(show, r);
354 private void handleShowDetail(Record r, boolean show) { argument
356 handleShowDetailTile((TileRecord) r, show);
364 handleShowDetailImpl(r, show, x, y);
368 private void handleShowDetailTile(TileRecord r, boolean show) { argument
381 handleShowDetailImpl(Record r, boolean show, int x, int y) argument
[all...]
H A DQSTile.java131 public void showDetail(boolean show) { argument
132 mHandler.obtainMessage(H.SHOW_DETAIL, show ? 1 : 0, 0).sendToTarget();
221 private void handleShowDetail(boolean show) { argument
223 mCallback.onShowDetail(show);
316 void onShowDetail(boolean show); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSignalClusterView.java251 public void setNoSims(boolean show) { argument
252 mNoSimsVisible = show && !mBlockMobile;
H A DBaseStatusBar.java404 toast.show();
469 // notifications that have a summary, since we're not going to show them
909 // app is gone, just show package name and generic icon
970 Log.e(TAG, "Trying to show notification guts, but not attached to window");
986 Log.e(TAG, "Trying to show notification guts, but already visible");
1209 * notification data. If so, private notifications should show their (possibly
1806 * @return The number of notifications we show on Keyguard.
1875 protected void setShowLockscreenNotifications(boolean show) { argument
1876 mShowLockscreenNotifications = show;
1880 final boolean show
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java292 500).show();
427 public void setMenuVisibility(final boolean show) { argument
428 setMenuVisibility(show, false);
431 public void setMenuVisibility(final boolean show, final boolean force) { argument
432 if (!force && mShowMenu == show) return;
434 mShowMenu = show;
436 // Only show Menu if IME switcher not shown.
H A DStatusBarHeaderView.java521 Toast.makeText(getContext(), R.string.tuner_toast, Toast.LENGTH_LONG).show();
560 public void setEmergencyCallsOnly(boolean show) { argument
561 boolean changed = show != mShowEmergencyCallsOnly;
563 mShowEmergencyCallsOnly = show;
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp583 status_t SurfaceComposerClient::show(const sp<IBinder>& id) { function in class:android::SurfaceComposerClient
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBackgroundManager.java1196 private void showWallpaper(boolean show) { argument
1202 if (show) {
H A DBrowseFragment.java79 // BUNDLE attribute for saving header show/hide status when backstack is used:
81 // BUNDLE attribute for saving header show/hide status when backstack is not used:
126 // if popped "headers" backstack, initiate the show header transition if needed
360 * <p>This method will begin a transition to either show or hide the
709 private void showHeaders(boolean show) { argument
710 if (DEBUG) Log.v(TAG, "showHeaders " + show);
711 mHeadersFragment.setHeadersEnabled(show);
712 setHeadersOnScreen(show);
713 setRowsAlignedLeft(!show);
714 mRowsFragment.setExpand(!show);
[all...]
H A DBrowseSupportFragment.java81 // BUNDLE attribute for saving header show/hide status when backstack is used:
83 // BUNDLE attribute for saving header show/hide status when backstack is not used:
128 // if popped "headers" backstack, initiate the show header transition if needed
362 * <p>This method will begin a transition to either show or hide the
711 private void showHeaders(boolean show) { argument
712 if (DEBUG) Log.v(TAG, "showHeaders " + show);
713 mHeadersSupportFragment.setHeadersEnabled(show);
714 setHeadersOnScreen(show);
715 setRowsAlignedLeft(!show);
716 mRowsSupportFragment.setExpand(!show);
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java163 * @param show Set to true to display the arrowhead on the progress spinner.
165 public void showArrow(boolean show) { argument
166 mRing.setShowArrow(show);
740 * @param show Set to true to show the arrow head on the progress spinner.
742 public void setShowArrow(boolean show) { argument
743 if (mShowArrow != show) {
744 mShowArrow = show;
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java164 * e.g. show an arrow to the left indicating the action that will be taken.
259 * @param resId Resource ID of a drawable to show as an icon.
274 * @param icon Drawable to show as an icon.
289 * @param resId Resource ID of a drawable to show as a logo.
304 * @param logo Drawable to show as a logo.
458 * @param showHome true to show home, false otherwise.
472 * @param showHomeAsUp true to show the user that selecting home will return one
778 public abstract void show(); method in class:ActionBar
941 * {@link #hide() hidden}. A call to {@link #show() show} wil
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DToolbarActionBar.java401 public void show() { method in class:ToolbarActionBar
H A DWindowDecorActionBar.java83 * Only allow show/hide animations on ICS+, as that is what ViewPropertyAnimatorCompat supports
324 * Enables or disables animation between show/hide states.
645 public void show() { method in class:WindowDecorActionBar
1084 new MenuPopupHelper(getThemedContext(), subMenu).show();
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java518 public FragmentTransaction show(Fragment fragment) { method in class:BackStackRecord
H A DDownloadManager.java402 * This download doesn't show in the UI or in the notifications.
625 * @param show whether the download manager should show a notification for this download.
630 public Request setShowRunningNotification(boolean show) { argument
631 return (show) ? setNotificationVisibility(VISIBILITY_VISIBLE) :
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java210 public void show(Bundle sessionArgs, int flags,
985 mWindow.show();
1069 * Return which show context flags have been disabled by the user through the system
1098 public void show(Bundle args, int flags) { method in class:VoiceInteractionSession
1218 * Retrieve the window being used to show the session's UI.
1268 * is already shown, if a show request has come in while it is shown, to allow you to
1269 * update the UI to match the new show arguments.
1273 * @param showFlags The show flags originally provided to
1280 * Called immediately after stopping to show the session UI.
1329 * an assist session is started. If the original show reques
[all...]
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java568 show();
573 * Post a {@link #show()} call to the UI thread.
583 public void show() { method in class:ListPopupWindow
707 * the next time the popup is shown or through a manual call to the {@link #show()}
711 * @see #show()
905 show();
925 show();
1057 * completed and if so call showDropDown to display the drop down. This is used to show
1066 show();
1211 // add padding only if the list has items in it, that way we don't show
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java327 * Enables or disables animation between show/hide states.
653 public void show() { method in class:WindowDecorActionBar
1111 new MenuPopupHelper(getThemedContext(), subMenu).show();
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialog.java430 public void show(int reason) { method in class:VolumeDialog
851 mSafetyWarning.show();
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowStateAnimator.java695 public void show() { method in class:WindowStateAnimator.SurfaceTrace
697 if (logSurfaceTrace) Slog.v(SURFACE_TAG, "show: OLD:" + this + ". Called by "
701 super.show();
1719 // Force the show in the next prepareSurfaceLocked() call.
1774 * Have the surface flinger show a surface, robustly dealing with
1776 * to show the surface, then we will try to get rid of other surfaces
1785 mSurfaceControl.show();
1798 mService.reclaimSomeSurfaceMemoryLocked(this, "show", true);
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java471 public FragmentTransaction show(Fragment fragment) { method in class:BackStackRecord
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java568 show();
573 * Post a {@link #show()} call to the UI thread.
583 public void show() { method in class:ListPopupWindow
703 * the next time the popup is shown or through a manual call to the {@link #show()}
707 * @see #show()
904 show();
924 show();
1056 * completed and if so call showDropDown to display the drop down. This is used to show
1065 show();
1202 // add padding only if the list has items in it, that way we don't show
[all...]

Completed in 616 milliseconds

12345