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

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

There is a newer version: 1.6.8
Show 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 - 2024 Weber Informatics LLC | Privacy Policy