OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cling
(Results
1 - 5
of
5
) 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
...]
/packages/apps/Launcher3/src/com/android/launcher3/
LauncherClings.java
66
// Disable the migration
cling
75
// Set the flag to skip the folder
cling
79
// Disable the migration
cling
87
* Shows the migration
cling
.
108
// Show the longpress
cling
next
122
View
cling
= mInflater.inflate(R.layout.longpress_cling, root, false);
local
124
cling
.setOnLongClickListener(new OnLongClickListener() {
134
final ViewGroup content = (ViewGroup)
cling
.findViewById(R.id.cling_content);
145
root.addView(
cling
);
148
// This is the first
cling
being shown. No need to animate
[
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
238
// Set touchable region to cover the
cling
layout.
278
// create the confirmation
cling
292
final View
cling
= mClingLayout;
local
293
cling
.setAlpha(0f);
294
cling
.setTranslationY(-OFFSET_DP * density);
299
cling
.animate()
/packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java
3968
final Cling
cling
= (Cling) findViewById(
cling
Id);
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 90 milliseconds