All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.com.android.systemui.recents.events.ui.DraggingInRecentsEndedEvent Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform.

There is a newer version: 15-robolectric-12650502
Show newest version
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