Home
last modified time | relevance | path

Searched refs:handlesLongClick (Results 1 – 12 of 12) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
H A DQSTile.java166 public boolean handlesLongClick = true; field in QSTile.State
190 || !Objects.equals(other.handlesLongClick, handlesLongClick) in copyTo()
207 other.handlesLongClick = handlesLongClick; in copyTo()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DAlarmTile.kt69 handlesLongClick = false
H A DDeviceControlsTile.kt95 it.handlesLongClick = false
H A DFlashlightTile.java79 state.handlesLongClick = false; in newTileState()
H A DScreenRecordTile.java91 state.handlesLongClick = false; in newTileState()
H A DQuickAccessWalletTile.java105 state.handlesLongClick = false; in newTileState()
H A DCastTile.java122 state.handlesLongClick = false; in newTileState()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/
H A DAlarmTileTest.kt98 assertThat(tile.state.handlesLongClick).isFalse()
H A DDeviceControlsTileTest.kt184 assertThat(tile.state.handlesLongClick).isFalse()
H A DQuickAccessWalletTileTest.java168 assertFalse(mTile.newTileState().handlesLongClick); in testNewTile()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSTileViewImpl.kt413 isLongClickable = state.handlesLongClick
/aosp12/frameworks/base/packages/SystemUI/docs/
H A Dqs-tiles.md56 * **`handlesLongClick`**: whether the Tile will handle long click. If it won't, it should be set to…
299 …will not support long click (like the `FlashlightTile`), set `state.handlesLongClick` to `false` (…