-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Simple application to add up to 3 quick settings tiles to the quick settings layout. | ||
The app makes use of the accessibility service to provide quick settings tiles to perform global actions: screenshot (API level 28), sleep (API level 28) and system power dialog (API level 21). | ||
System power dialog (GLOBAL_ACTION_POWER_DIALOG) has been added in API level 21 (https://developer.android.com/reference/android/accessibilityservice/AccessibilityService#GLOBAL_ACTION_POWER_DIALOG). | ||
Sleep (GLOBAL_ACTION_LOCK_SCREEN) has been added in API level 28 (https://developer.android.com/reference/android/accessibilityservice/AccessibilityService#GLOBAL_ACTION_LOCK_SCREEN). | ||
Screenshot (GLOBAL_ACTION_TAKE_SCREENSHOT) has been added in API level 28 (https://developer.android.com/reference/android/accessibilityservice/AccessibilityService#GLOBAL_ACTION_TAKE_SCREENSHOT). | ||
System power dialog (GLOBAL_ACTION_POWER_DIALOG) has been added in <a href="https://developer.android.com/reference/android/accessibilityservice/AccessibilityService#GLOBAL_ACTION_POWER_DIALOG">API level 21</a>. | ||
Sleep (GLOBAL_ACTION_LOCK_SCREEN) has been added in <a href="https://developer.android.com/reference/android/accessibilityservice/AccessibilityService#GLOBAL_ACTION_LOCK_SCREEN">API level 28</a> | ||
Screenshot (GLOBAL_ACTION_TAKE_SCREENSHOT) has been added in <a href="https://developer.android.com/reference/android/accessibilityservice/AccessibilityService#GLOBAL_ACTION_TAKE_SCREENSHOT">API level 28</a>. | ||
|
||
Android Developers Documentation | ||
- Accessibility service: https://developer.android.com/reference/android/accessibilityservice/AccessibilityService | ||
- Tile: https://developer.android.com/reference/android/service/quicksettings/Tile | ||
- TileService: https://developer.android.com/reference/android/service/quicksettings/TileService | ||
- <a href="https://developer.android.com/reference/android/accessibilityservice/AccessibilityService">Accessibility service</a> | ||
- <a href="https://developer.android.com/reference/android/service/quicksettings/Tile">Tile</a> | ||
- <a href="https://developer.android.com/reference/android/service/quicksettings/TileService">TileService</a> |