You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
FrameLayout: replace with AOSPs implementation
There are many Widgets extending FrameLayout and adding custom behaviour on top. For example NavigationView. This didn't realy work with our custom implementation
This commit is contained in:
@@ -34,6 +34,12 @@ public class ViewGroup extends View implements ViewParent, ViewManager {
|
||||
children = new ArrayList<View>();
|
||||
}
|
||||
|
||||
public ViewGroup(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
|
||||
super(context, attrs, defStyleAttr);
|
||||
|
||||
children = new ArrayList<View>();
|
||||
}
|
||||
|
||||
public ViewGroup(int _id) { // FIXME
|
||||
children = new ArrayList<View>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user