android.view.ViewManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
The newest version!
package android.view;
public interface ViewManager
{
public abstract void addView(android.view.View view, android.view.ViewGroup.LayoutParams params);
public abstract void updateViewLayout(android.view.View view, android.view.ViewGroup.LayoutParams params);
public abstract void removeView(android.view.View view);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy