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

org.holoeverywhere.widget.FrameLayout Maven / Gradle / Ivy

The newest version!

package org.holoeverywhere.widget;

import android.content.Context;
import android.util.AttributeSet;

public class FrameLayout extends android.widget.FrameLayout {
    public FrameLayout(Context context) {
        super(context);
    }

    public FrameLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public FrameLayout(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy