Searched refs:Window (Results 51 - 75 of 137) sorted by relevance

123456

/frameworks/base/core/java/android/app/
H A DPresentation.java32 import android.view.Window;
191 final Window w = getWindow();
H A DActivity.java109 import android.view.Window;
110 import android.view.Window.WindowControllerCallback;
694 Window.Callback, KeyEvent.Callback,
696 Window.OnWindowDismissedCallback, WindowControllerCallback,
789 private Window mWindow;
904 * Retrieve the current {@link android.view.Window} for the activity.
905 * This can be used to directly access parts of the Window API that
908 * @return Window The current window, or null if the activity is not
911 public Window getWindow() {
923 * Calls {@link android.view.Window#getCurrentFocu
[all...]
H A DDialogFragment.java25 import android.view.Window;
194 * same effect can be achieve by manually setting Dialog and Window
415 mDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
/frameworks/base/core/java/android/text/method/
H A DCharacterPickerDialog.java28 import android.view.Window;
74 params.flags = params.flags | Window.FEATURE_NO_TITLE;
/frameworks/base/core/java/com/android/internal/app/
H A DUnlaunchableAppActivity.java40 import android.view.Window;
65 requestWindowFeature(Window.FEATURE_NO_TITLE);
H A DMediaRouteChooserDialog.java31 import android.view.Window;
125 getWindow().requestFeature(Window.FEATURE_LEFT_ICON);
133 getWindow().setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,
/frameworks/base/core/tests/coretests/src/android/util/
H A DScrollViewScenario.java26 import android.view.Window;
241 requestWindowFeature(Window.FEATURE_NO_TITLE);
H A DGridScenario.java23 import android.view.Window;
234 requestWindowFeature(Window.FEATURE_NO_TITLE);
/frameworks/base/graphics/java/android/view/
H A DPixelCopy.java197 * Requests a copy of the pixels from a {@link Window} to be copied into
203 * in the Window's Surface will be used as the source of the copy.
205 * Note: This is limited to being able to copy from Window's with a non-null
206 * DecorView. If {@link Window#peekDecorView()} is null this throws an
221 public static void request(@NonNull Window source, @NonNull Bitmap dest,
228 * a {@link Window} to be copied into a provided {@link Bitmap}.
233 * in the Window's Surface will be used as the source of the copy.
235 * Note: This is limited to being able to copy from Window's with a non-null
236 * DecorView. If {@link Window#peekDecorView()} is null this throws an
254 public static void request(@NonNull Window sourc
[all...]
/frameworks/base/test-runner/src/android/test/
H A DActivityUnitTestCase.java28 import android.view.Window;
307 public Window getWindow() {
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/util/
H A DMockWindow.java32 import android.view.Window;
34 public class MockWindow extends Window {
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDelegate.java42 import android.view.Window;
195 private static AppCompatDelegate create(Context context, Window window,
343 * {@link android.view.Window#requestFeature getWindow().requestFeature()}.
345 * @param featureId The desired feature as defined in {@link android.view.Window}.
354 * <p>This should be called instead of {@link android.view.Window#hasFeature(int)}.</p>
H A DAppCompatActivity.java43 import android.view.Window;
124 * {@link android.view.Window#FEATURE_ACTION_BAR FEATURE_SUPPORT_ACTION_BAR}.</p>
223 * {@link android.view.Window#requestFeature getWindow().requestFeature()}.
227 * {@link android.view.Window} or {@link android.support.v4.view.WindowCompat}.
231 * @see android.view.Window#requestFeature
555 final Window currentWindow = getWindow();
577 if (getWindow().hasFeature(Window.FEATURE_OPTIONS_PANEL)
586 if (getWindow().hasFeature(Window.FEATURE_OPTIONS_PANEL)
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
H A DKeyboardShortcutsTestCaseWithToolbar.java34 import android.view.Window;
115 final Window.Callback cb = activity.getWindow().getCallback();
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/
H A DBalls.java33 import android.view.Window;
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DStatusBarTest.java28 import android.view.Window;
131 Window win = getWindow();
139 Window win = getWindow();
/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java77 import android.view.Window;
101 import static android.view.Window.DECOR_CAPTION_SHADE_DARK;
102 import static android.view.Window.DECOR_CAPTION_SHADE_LIGHT;
131 Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME,
139 Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME,
353 final Window.Callback cb = mWindow.getCallback();
381 final Window.Callback cb = mWindow.getCallback();
393 mWindow.getPanelState(Window.FEATURE_OPTIONS_PANEL, false);
408 final Window.Callback cb = mWindow.getCallback();
415 final Window
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/policy/
H A DAccessibilityShortcutControllerTest.java34 import android.view.Window;
151 Window window = mock(Window.class);
155 Field field = Window.class.getDeclaredField("mWindowAttributes");
/frameworks/base/core/java/android/preference/
H A DPreferenceScreen.java31 import android.view.Window;
205 dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
/frameworks/base/core/java/android/view/
H A DWindow.java59 * Window.
61 public abstract class Window { class
230 * @see android.view.Window#setStatusBarColor(int)
236 * @see android.view.Window#setNavigationBarColor(int)
286 private Window mContainer;
287 private Window mActiveChild;
313 * API from a Window back to its caller. This allows the client to
320 * {@link android.view.Window#superDispatchKeyEvent} to do the
332 * {@link android.view.Window#superDispatchKeyShortcutEvent} to do the
343 * {@link android.view.Window#superDispatchTouchEven
672 public Window(Context context) { method in class:Window
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/policy/
H A DPhoneWindowActionModeTest.java31 import android.view.Window;
177 private static final class MockWindowCallback implements Window.Callback {
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
H A DSettingsDrawerActivity.java36 import android.view.Window;
72 requestWindowFeature(Window.FEATURE_NO_TITLE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbDebuggingActivity.java37 import android.view.Window;
56 Window window = getWindow();
/frameworks/support/fragment/java/android/support/v4/app/
H A DDialogFragment.java34 import android.view.Window;
107 * same effect can be achieve by manually setting Dialog and Window
333 dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
/frameworks/support/v14/preference/src/android/support/v14/preference/
H A DPreferenceDialogFragment.java39 import android.view.Window;
207 Window window = dialog.getWindow();

Completed in 955 milliseconds

123456