add Java APIs needed for WhatsApp settings

This commit is contained in:
Julian Winkler
2024-09-03 17:49:56 +02:00
parent 6c454085dd
commit 3d38ec9755
12 changed files with 60 additions and 2 deletions

View File

@@ -896,6 +896,15 @@ public class View implements Drawable.Callback {
minHeight = a.getDimensionPixelSize(com.android.internal.R.styleable.View_minHeight, 0);
}
}
onCreateDrawableState(0);
}
protected int[] onCreateDrawableState(int extraSpace) {
return new int[0];
}
protected static int[] mergeDrawableStates(int[] curState, int[] newState) {
return new int[0];
}
public View findViewById(int id) {