
src.com.android.systemui.recents.events.ui.DraggingInRecentsEndedEvent 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 finished dragging in recents.
*/
public class DraggingInRecentsEndedEvent extends Event {
public final float velocity;
public DraggingInRecentsEndedEvent(float velocity) {
this.velocity = velocity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy