Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
DQSTile.java166 public boolean handlesLongClick = true; field in QSTile.State
190 || !Objects.equals(other.handlesLongClick, handlesLongClick) in copyTo()
207 other.handlesLongClick = handlesLongClick; in copyTo()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/
DAlarmTileTest.kt97 assertThat(tile.state.handlesLongClick).isFalse() in testDoesntHandleLongClick()
DDeviceControlsTileTest.kt186 assertThat(tile.state.handlesLongClick).isFalse() in testDoesNotHandleLongClick()
DQuickAccessWalletTileTest.java168 assertFalse(mTile.newTileState().handlesLongClick); in testNewTile()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DAlarmTile.kt69 handlesLongClick = false in <lambda>()
DFlashlightTile.java79 state.handlesLongClick = false; in newTileState()
DDeviceControlsTile.kt95 it.handlesLongClick = false in newTileState()
DScreenRecordTile.java81 state.handlesLongClick = false; in newTileState()
DQuickAccessWalletTile.java105 state.handlesLongClick = false; in newTileState()
DCastTile.java117 state.handlesLongClick = false; in newTileState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
DQSTileViewImpl.kt352 isLongClickable = state.handlesLongClick in <lambda>()
/frameworks/base/packages/SystemUI/docs/
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` (…