/packages/apps/Launcher2/res/layout/ |
custom_workspace_cling.xml | 17 <com.android.launcher2.Cling 32 </com.android.launcher2.Cling>
|
/packages/apps/Launcher2/res/values-sw720dp-land/ |
dimens.xml | 36 <!-- Cling --> 37 <!-- The offset for the text in the cling -->
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
Cling.java | 38 public class Cling extends FrameLayout { 40 static final String WORKSPACE_CLING_DISMISSED_KEY = "cling.workspace.dismissed"; 41 static final String ALLAPPS_CLING_DISMISSED_KEY = "cling.allapps.dismissed"; 42 static final String FOLDER_CLING_DISMISSED_KEY = "cling.folder.dismissed"; 71 public Cling(Context context) { 75 public Cling(Context context, AttributeSet attrs) { 79 public Cling(Context context, AttributeSet attrs, int defStyle) { 82 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.Cling, defStyle, 0); 96 mPunchThroughGraphic = r.getDrawable(R.drawable.cling); 268 // Draw the rest of the cling [all...] |
Launcher.java | 3695 final Cling cling = (Cling) findViewById(clingId); local 3749 final View cling = findViewById(id); local 3763 Cling cling = (Cling) findViewById(R.id.workspace_cling); local 3784 View cling = findViewById(R.id.workspace_cling); local 3817 Cling cling = (Cling) findViewById(R.id.folder_cling); local 3824 Cling cling = (Cling) findViewById(R.id.workspace_cling); local 3828 Cling cling = (Cling) findViewById(R.id.all_apps_cling); local 3832 Cling cling = (Cling) findViewById(R.id.folder_cling); local [all...] |
HideFromAccessibilityHelper.java | 103 return !hasAncestorOfType(v, Cling.class) &&
|
AppsCustomizeTabHost.java | 419 // Dismiss the workspace cling and show the all apps cling (if not already shown)
|
Folder.java | 438 Cling cling = mLauncher.showFirstRunFoldersCling(); 439 if (cling != null) { 440 cling.bringToFront(); [all...] |
AppsCustomizePagedView.java | 260 // Cling 482 // Show All Apps cling if we are finished transitioning, otherwise, we will try again when 498 // Calculate the position for the cling punch through [all...] |
/packages/apps/Launcher2/res/layout-land/ |
all_apps_cling.xml | 16 <com.android.launcher2.Cling 48 </com.android.launcher2.Cling>
|
folder_cling.xml | 16 <com.android.launcher2.Cling 48 </com.android.launcher2.Cling>
|
workspace_cling.xml | 16 <com.android.launcher2.Cling 59 </com.android.launcher2.Cling>
|
/packages/apps/Launcher2/res/layout-port/ |
all_apps_cling.xml | 16 <com.android.launcher2.Cling 48 </com.android.launcher2.Cling>
|
folder_cling.xml | 16 <com.android.launcher2.Cling 49 </com.android.launcher2.Cling>
|
workspace_cling.xml | 16 <com.android.launcher2.Cling 62 </com.android.launcher2.Cling>
|
/packages/apps/Launcher2/res/layout-sw600dp-port/ |
all_apps_cling.xml | 16 <com.android.launcher2.Cling 50 </com.android.launcher2.Cling>
|
folder_cling.xml | 16 <com.android.launcher2.Cling 51 </com.android.launcher2.Cling>
|
/packages/apps/Launcher2/res/layout-sw720dp/ |
all_apps_cling.xml | 16 <com.android.launcher2.Cling 46 </com.android.launcher2.Cling>
|
folder_cling.xml | 16 <com.android.launcher2.Cling 46 </com.android.launcher2.Cling>
|
workspace_cling.xml | 16 <com.android.launcher2.Cling 62 </com.android.launcher2.Cling>
|
/packages/apps/Launcher2/res/layout-sw720dp-port/ |
folder_cling.xml | 16 <com.android.launcher2.Cling 46 </com.android.launcher2.Cling>
|
/packages/apps/Launcher2/res/values/ |
attrs.xml | 37 <!-- Cling specific attributes. These attributes are used to customize 38 the cling in XML files. --> 39 <declare-styleable name="Cling"> 40 <!-- Used to identify how to draw the cling bg --> 129 <!-- The x index of the item to be focused in the cling --> 131 <!-- The y index of the item to be focused in the cling -->
|
dimens.xml | 18 <!-- Cling --> 21 <!-- The offset for the text in the cling -->
|
strings.xml | 229 <!-- The title text for the workspace cling [CHAR_LIMIT=none] --> 235 <!-- The title text for the All Apps cling [CHAR_LIMIT=none] --> 239 <!-- The title text for the Folder cling [CHAR_LIMIT=none] --> 245 <!-- The text on the button to dismiss a cling [CHAR_LIMIT=none] --> 247 <!-- Error message on dummy custom cling layout [DO NOT TRANSLATE] --> 248 <string name="dummy_custom_cling_error_message">Error: custom workspace layout passed in but custom cling was not overwritten</string>
|
/packages/apps/Launcher2/res/values-sw720dp-port/ |
dimens.xml | 56 <!-- Cling --> 57 <!-- The offset for the text in the cling -->
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
PhoneStatusBar.java | 245 private boolean mSuppressStatusBarDrags; // while a cling is up, briefly deaden the bar to give things time to settle [all...] |