2019-10-15 17:39:03 -04:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2019 The Android Open Source 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 com.android.systemui.plugins;
|
|
|
|
|
|
|
|
|
|
import com.android.systemui.plugins.annotations.ProvidesInterface;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Implement this interface to receive a callback when the user swipes right
|
|
|
|
|
* to left on the gesture area. It won't fire if the user has quick switched to a previous app
|
|
|
|
|
* (swiped right) and the current app isn't yet the active one (i.e., if swiping left would take
|
|
|
|
|
* the user to a more recent app).
|
|
|
|
|
*/
|
|
|
|
|
@ProvidesInterface(action = com.android.systemui.plugins.OverscrollPlugin.ACTION,
|
2019-12-20 14:24:10 -05:00
|
|
|
version = com.android.systemui.plugins.OverscrollPlugin.VERSION)
|
2019-10-15 17:39:03 -04:00
|
|
|
public interface OverscrollPlugin extends Plugin {
|
|
|
|
|
|
|
|
|
|
String ACTION = "com.android.systemui.action.PLUGIN_LAUNCHER_OVERSCROLL";
|
2020-05-07 00:13:47 +00:00
|
|
|
int VERSION = 3;
|
2019-10-15 17:39:03 -04:00
|
|
|
|
|
|
|
|
String DEVICE_STATE_LOCKED = "Locked";
|
|
|
|
|
String DEVICE_STATE_LAUNCHER = "Launcher";
|
|
|
|
|
String DEVICE_STATE_APP = "App";
|
|
|
|
|
String DEVICE_STATE_UNKNOWN = "Unknown";
|
|
|
|
|
|
|
|
|
|
/**
|
2019-12-20 14:24:10 -05:00
|
|
|
* @return true if the plugin is active and will accept overscroll gestures
|
|
|
|
|
*/
|
|
|
|
|
boolean isActive();
|
|
|
|
|
|
|
|
|
|
/**
|
2020-05-07 00:13:47 +00:00
|
|
|
* Called when a touch is down and has been recognized as an overscroll gesture.
|
|
|
|
|
* A call of this method will always result in `onTouchUp` being called, and possibly
|
|
|
|
|
* `onFling` as well.
|
|
|
|
|
*
|
2019-12-20 14:24:10 -05:00
|
|
|
* @param deviceState String representing the current device state
|
|
|
|
|
* @param underlyingActivity String representing the currently active Activity
|
|
|
|
|
*/
|
2020-05-07 00:13:47 +00:00
|
|
|
void onTouchStart(String deviceState, String underlyingActivity);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Called when a touch that was previously recognized has moved.
|
|
|
|
|
*
|
|
|
|
|
* @param px distance between the position of touch on this update and the position of the
|
|
|
|
|
* touch when it was initially recognized.
|
|
|
|
|
*/
|
|
|
|
|
void onTouchTraveled(int px);
|
2019-12-20 14:24:10 -05:00
|
|
|
|
|
|
|
|
/**
|
2020-05-07 00:13:47 +00:00
|
|
|
* Called when a touch that was previously recognized has ended.
|
|
|
|
|
*
|
|
|
|
|
* @param px distance between the position of touch on this update and the position of the
|
|
|
|
|
* touch when it was initially recognized.
|
2019-12-20 14:24:10 -05:00
|
|
|
*/
|
2020-05-07 00:13:47 +00:00
|
|
|
void onTouchEnd(int px);
|
2019-12-20 14:24:10 -05:00
|
|
|
|
|
|
|
|
/**
|
2020-05-07 00:13:47 +00:00
|
|
|
* Called when the user starts Compose with a fling. `onTouchUp` will also be called.
|
2019-10-15 17:39:03 -04:00
|
|
|
*/
|
2020-05-07 00:13:47 +00:00
|
|
|
void onFling(float velocity);
|
2019-10-15 17:39:03 -04:00
|
|
|
}
|