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

src.com.android.systemui.recents.events.ui.DraggingInRecentsEvent 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 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