Files
android_translation_layer/src/api-impl/android/widget/Space.java

19 lines
363 B
Java
Raw Normal View History

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