OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DeepShortcutView
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
ShortcutsItemView.java
50
* A {@link PopupItemView} that contains all of the {@link
DeepShortcutView
}s for an app,
61
private final List<
DeepShortcutView
> mDeepShortcutViews = new ArrayList<>();
99
if (!v.isInTouchMode() || !(v.getParent() instanceof
DeepShortcutView
)) return false;
106
DeepShortcutView
sv = (
DeepShortcutView
) v.getParent();
129
mDeepShortcutViews.add((
DeepShortcutView
) shortcutView);
144
if (prevChild instanceof
DeepShortcutView
) {
152
public List<
DeepShortcutView
> getDeepShortcutViews(boolean reverseOrder) {
217
if (!(mShortcutsLayout.getChildAt(i) instanceof
DeepShortcutView
)) {
220
DeepShortcutView
shortcutView = ((DeepShortcutView) mShortcutsLayout.getChildAt(i))
[
all
...]
DeepShortcutView.java
34
* A {@link android.widget.FrameLayout} that contains a {@link
DeepShortcutView
}.
35
* This lets us animate the
DeepShortcutView
(icon and text) separately from the background.
37
public class
DeepShortcutView
extends FrameLayout {
49
public
DeepShortcutView
(Context context) {
53
public
DeepShortcutView
(Context context, AttributeSet attrs) {
57
public
DeepShortcutView
(Context context, AttributeSet attrs, int defStyle) {
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
ShortcutMenuAccessibilityDelegate.java
30
import com.android.launcher3.shortcuts.
DeepShortcutView
;
50
if ((host.getParent() instanceof
DeepShortcutView
)) {
63
if (!(host.getParent() instanceof
DeepShortcutView
)) {
66
final ShortcutInfo info = ((
DeepShortcutView
) host.getParent()).getFinalInfo();
/packages/apps/Launcher3/src/com/android/launcher3/popup/
PopupPopulator.java
39
import com.android.launcher3.shortcuts.
DeepShortcutView
;
184
final List<String> shortcutIds, final List<
DeepShortcutView
> shortcutViews,
241
private final
DeepShortcutView
mShortcutChild;
245
public UpdateShortcutChild(PopupContainerWithArrow container,
DeepShortcutView
shortcutChild,
305
if (view instanceof
DeepShortcutView
) {
307
final
DeepShortcutView
shortcutView = (
DeepShortcutView
) view;
PopupContainerWithArrow.java
71
import com.android.launcher3.shortcuts.
DeepShortcutView
;
195
List<
DeepShortcutView
> shortcutViews = mShortcutsItemView == null
[
all
...]
Completed in 3917 milliseconds