Dear developer,
The long-press home button function cannot be modified. Only single-click and double-click events can be modified.
public enum HomeEventEnum
{
SINGLE_CLICK, // single click
DOUBLE_CLICK // double click
}
Currently, only the following four functions are supported. Custom functions are not supported.
public enum HomeFunctionEnum
{
VALUE_HOME_GO_TO_SETTING = 0, // Go to settings
VALUE_HOME_RECENTER = 2, // Recenter
VALUE_HOME_DISABLE = 4, // Disable the event of Home key
VALUE_HOME_GO_TO_HOME = 5 // Go to Home
}