Files
android_translation_layer/src/api-impl/android/widget/Space.java
2024-02-16 15:28:04 +01:00

19 lines
363 B
Java

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;
}
}