blob: d1b5896bb1de657506932de3339de3b3709c0eb3 [file] [log] [blame]
package android.support.design.widget;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.LinearLayout;
public class TextInputLayout extends LinearLayout {
public TextInputLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}