add some stubs needed since we now handle onMeasure() for more Views

This commit is contained in:
Julian Winkler
2023-12-29 11:09:37 +01:00
parent 757d689689
commit 0614e6c245
7 changed files with 25 additions and 2 deletions

View File

@@ -6,8 +6,6 @@ import android.view.ViewGroup;
public class LinearLayout extends ViewGroup {
boolean orientation;
public LinearLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
@@ -20,6 +18,7 @@ public class LinearLayout extends ViewGroup {
protected native long native_constructor(Context context, AttributeSet attrs);
public native void setOrientation(int orientation);
public native int getOrientation();
public void setWeightSum(float weightSum) {}
@Override