
org.robolectric.shadows.ShadowRotationWatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shadows-framework Show documentation
Show all versions of shadows-framework Show documentation
An alternative Android testing framework.
package org.robolectric.shadows;
import static android.os.Build.VERSION_CODES.M;
import com.android.internal.policy.PhoneWindow;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
/**
* Shadow for RotationWatcher for API 23+
*/
@Implements(className = "com.android.internal.policy.PhoneWindow$RotationWatcher",
isInAndroidSdk = false, minSdk = M)
public class ShadowRotationWatcher {
@Implementation
protected void addWindow(PhoneWindow phoneWindow) {
// ignore
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy