add some methods needed for androidx dialogs

This commit is contained in:
Julian Winkler
2024-02-09 16:41:37 +01:00
parent 056b911637
commit d2f28a5b21
7 changed files with 48 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
package android.widget;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
public class Space extends View {
public Space(Context context) {
super(context);
haveComplexMeasure = true;
}
public Space(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
haveComplexMeasure = true;
}
}