mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-04-30 05:07:58 +03:00
add bunch of new java APIs: mostly stubs or copied from AOSP
Many of these classes are only needed to be subclassed by androidx support library, which is used in many android apps
This commit is contained in:
parent
a8e39cd613
commit
82744e9e5e
87 changed files with 2746 additions and 46 deletions
17
src/api-impl/android/widget/Button.java
Normal file
17
src/api-impl/android/widget/Button.java
Normal file
|
@ -0,0 +1,17 @@
|
|||
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);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue