Update stubs

This commit is contained in:
Tony Torralba
2021-12-21 12:36:06 +01:00
parent 66794665f3
commit a59a4024a5
222 changed files with 7799 additions and 3572 deletions

View File

@@ -0,0 +1,20 @@
// Generated automatically from android.view.WindowInsetsAnimationController for testing purposes
package android.view;
import android.graphics.Insets;
public interface WindowInsetsAnimationController
{
Insets getCurrentInsets();
Insets getHiddenStateInsets();
Insets getShownStateInsets();
boolean isCancelled();
boolean isFinished();
default boolean isReady(){ return false; }
float getCurrentAlpha();
float getCurrentFraction();
int getTypes();
void finish(boolean p0);
void setInsetsAndAlpha(Insets p0, float p1, float p2);
}