| package android.support.v7.widget; | |
| import android.content.Context; | |
| import android.util.AttributeSet; | |
| import android.widget.Button; | |
| public class AppCompatButton extends Button { | |
| public AppCompatButton(Context context, AttributeSet attrs, int defStyleAttr) { | |
| super(context, attrs, defStyleAttr) | |
| } | |
| } |