
org.robolectric.shadows.ShadowPhoneWindow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric.shadows;
import android.graphics.drawable.Drawable;
import android.view.Window;
import com.android.internal.policy.PhoneWindow;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import org.robolectric.annotation.RealObject;
import org.robolectric.util.ReflectionHelpers.ClassParameter;
import static android.os.Build.VERSION_CODES.M;
import static org.robolectric.shadow.api.Shadow.directlyOn;
@Implements(value = PhoneWindow.class, isInAndroidSdk = false, minSdk = M)
public class ShadowPhoneWindow extends ShadowWindow {
@SuppressWarnings("UnusedDeclaration")
protected @RealObject Window realWindow;
@Implementation(minSdk = M)
public void setTitle(CharSequence title) {
this.title = title;
directlyOn(realWindow, realWindow.getClass().getName(), "setTitle", ClassParameter.from(CharSequence.class, title));
}
@Implementation(minSdk = M)
public void setBackgroundDrawable(Drawable drawable) {
this.backgroundDrawable = drawable;
directlyOn(realWindow, realWindow.getClass().getName(), "setBackgroundDrawable", ClassParameter.from(Drawable.class, drawable));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy