Searched defs:cling (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/widget/
H A DExternalViewerButton.java57 * Sets cling of the given viewer type for external viewer button.
59 public void setClingForViewer(int viewerType, Cling cling) { argument
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);
73 if (cling == null) {
76 cling
[all...]
/packages/apps/Camera2/src/com/android/camera/app/
H A DFilmstripBottomPanel.java75 public void setClingForViewer(int viewerType, Cling cling) { argument
76 mViewButton.setClingForViewer(viewerType, cling);
H A DCameraAppUI.java107 * Sets cling for external viewer button.
109 void setClingForViewer(int viewerType, Cling cling); argument
112 * Clears cling for external viewer button.
117 * Returns a cling for the specified viewer type.
861 * Creates a cling for the specific viewer and links the cling to the corresponding
864 * @param viewerType defines which viewer the cling is for.
871 // Creates refocus cling.
874 // Sets instruction text in the cling.
878 // Adds cling int
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncher.java2424 // Dismiss the folder cling
3968 final Cling cling = (Cling) findViewById(clingId);
3969 if (cling != null) {
3970 cling.init(this, positionData);
3971 cling.setVisibility(View.VISIBLE);
3972 cling.setLayerType(View.LAYER_TYPE_HARDWARE, null);
3974 cling.buildLayer();
3975 cling.setAlpha(0f);
3976 cling.animate()
3983 cling
3998 dismissCling(final Cling cling, final String flag, int duration) argument
[all...]

Completed in 264 milliseconds