1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/*
* Copyright (C) 2018,2021 The LineageOS Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lineageos.internal.util;
import android.content.ContentResolver;
import android.os.UserHandle;
import lineageos.providers.LineageSettings;
public class DeviceKeysConstants {
// Available custom actions to perform on a key press.
// Must match values for KEY_HOME_LONG_PRESS_ACTION in:
// sdk/src/java/lineageos/providers/LineageSettings.java
public enum Action {
NOTHING,
MENU,
APP_SWITCH,
SEARCH,
VOICE_SEARCH,
IN_APP_SEARCH,
LAUNCH_CAMERA,
SLEEP,
LAST_APP,
SPLIT_SCREEN,
KILL_APP;
public static Action fromIntSafe(int id) {
if (id < NOTHING.ordinal() || id > Action.values().length) {
return NOTHING;
}
return Action.values()[id];
}
public static Action fromSettings(ContentResolver cr, String setting, Action def) {
return fromIntSafe(LineageSettings.System.getIntForUser(cr,
setting, def.ordinal(), UserHandle.USER_CURRENT));
}
}
// Masks for checking presence of hardware keys.
// Must match values in:
// lineage/res/res/values/config.xml
public static final int KEY_MASK_HOME = 0x01;
public static final int KEY_MASK_BACK = 0x02;
public static final int KEY_MASK_MENU = 0x04;
public static final int KEY_MASK_ASSIST = 0x08;
public static final int KEY_MASK_APP_SWITCH = 0x10;
public static final int KEY_MASK_CAMERA = 0x20;
public static final int KEY_MASK_VOLUME = 0x40;
}
|