HomeSort by relevance Sort by last modified time
    Searched defs:cling (Results 1 - 4 of 4) sorted by null

  /packages/apps/Camera2/src/com/android/camera/widget/
ExternalViewerButton.java 39 private final SparseArray<Cling> mClingMap;
43 mClingMap = new SparseArray<Cling>();
57 * Sets cling of the given viewer type for external viewer button.
59 public void setClingForViewer(int viewerType, Cling cling) {
60 if (cling == null) {
61 Log.w(TAG, "Cannot set a null cling for viewer");
64 mClingMap.put(viewerType, cling);
65 cling.setReferenceView(this);
69 * Clears cling of the given viewer type for external viewer button
72 Cling cling = mClingMap.get(viewerType); local
140 Cling cling = mClingMap.get(mState); local
    [all...]
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
AospLauncherStrategy.java 53 // remove cling if it exists
54 UiObject2 cling = mDevice.findObject(By.res(LAUNCHER_PKG, "workspace_cling")); local
55 if (cling != null) {
56 cling.findObject(By.clazz(Button.class).text("OK")).click();
75 // check if there's a "cling" on screen
76 UiObject2 cling = mDevice.findObject(By.res(LAUNCHER_PKG, "cling_dismiss") local
78 if (cling != null) {
79 cling.click();
  /frameworks/base/services/core/java/com/android/server/policy/
ImmersiveModeConfirmation.java 247 // Set touchable region to cover the cling layout.
287 // create the confirmation cling
301 final View cling = mClingLayout; local
302 cling.setAlpha(0f);
303 cling.setTranslationY(-OFFSET_DP * density);
308 cling.animate()
  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java 3968 final Cling cling = (Cling) findViewById(clingId); local
4024 final View cling = findViewById(id); local
4038 Cling cling = (Cling) findViewById(R.id.workspace_cling); local
4059 View cling = findViewById(R.id.workspace_cling); local
4092 Cling cling = (Cling) findViewById(R.id.folder_cling); local
4099 Cling cling = (Cling) findViewById(R.id.workspace_cling); local
4103 Cling cling = (Cling) findViewById(R.id.all_apps_cling); local
4107 Cling cling = (Cling) findViewById(R.id.folder_cling); local
    [all...]

Completed in 603 milliseconds