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

android.view.LayoutInflater Maven / Gradle / Ivy

package android.view;
public abstract class LayoutInflater
{
public static interface Filter
{
public abstract  boolean onLoadClass(java.lang.Class clazz);
}
public static interface Factory
{
public abstract  android.view.View onCreateView(java.lang.String name, android.content.Context context, android.util.AttributeSet attrs);
}
protected  LayoutInflater(android.content.Context context) { throw new RuntimeException("Stub!"); }
protected  LayoutInflater(android.view.LayoutInflater original, android.content.Context newContext) { throw new RuntimeException("Stub!"); }
public static  android.view.LayoutInflater from(android.content.Context context) { throw new RuntimeException("Stub!"); }
public abstract  android.view.LayoutInflater cloneInContext(android.content.Context newContext);
public  android.content.Context getContext() { throw new RuntimeException("Stub!"); }
public final  android.view.LayoutInflater.Factory getFactory() { throw new RuntimeException("Stub!"); }
public  void setFactory(android.view.LayoutInflater.Factory factory) { throw new RuntimeException("Stub!"); }
public  android.view.LayoutInflater.Filter getFilter() { throw new RuntimeException("Stub!"); }
public  void setFilter(android.view.LayoutInflater.Filter filter) { throw new RuntimeException("Stub!"); }
public  android.view.View inflate(int resource, android.view.ViewGroup root) { throw new RuntimeException("Stub!"); }
public  android.view.View inflate(org.xmlpull.v1.XmlPullParser parser, android.view.ViewGroup root) { throw new RuntimeException("Stub!"); }
public  android.view.View inflate(int resource, android.view.ViewGroup root, boolean attachToRoot) { throw new RuntimeException("Stub!"); }
public  android.view.View inflate(org.xmlpull.v1.XmlPullParser parser, android.view.ViewGroup root, boolean attachToRoot) { throw new RuntimeException("Stub!"); }
public final  android.view.View createView(java.lang.String name, java.lang.String prefix, android.util.AttributeSet attrs) throws java.lang.ClassNotFoundException, android.view.InflateException { throw new RuntimeException("Stub!"); }
protected  android.view.View onCreateView(java.lang.String name, android.util.AttributeSet attrs) throws java.lang.ClassNotFoundException { throw new RuntimeException("Stub!"); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy