![JAR search and dependency download from the Maven repository](/logo.png)
src.com.android.systemui.recents.events.ui.DraggingInRecentsEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-all Show documentation
Show all versions of android-all Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
package com.android.systemui.recents.events.ui;
import com.android.systemui.recents.events.EventBus.Event;
/**
* This event is sent when the user changed how far they are dragging in recents.
*/
public class DraggingInRecentsEvent extends Event {
public final float distanceFromTop;
public DraggingInRecentsEvent(float distanceFromTop) {
this.distanceFromTop = distanceFromTop;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy