mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-04-29 04:37:58 +03:00
18 lines
309 B
Java
18 lines
309 B
Java
![]() |
package android.widget;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.util.AttributeSet;
|
||
|
import android.view.View;
|
||
|
|
||
|
public class Button extends View {
|
||
|
|
||
|
public Button(Context context) {
|
||
|
super(context);
|
||
|
}
|
||
|
|
||
|
public Button(Context context, AttributeSet attributeSet) {
|
||
|
super(context, attributeSet);
|
||
|
}
|
||
|
|
||
|
}
|