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
add missing Context attribute to all View constructors
This commit is contained in:
@@ -10,8 +10,8 @@ public class LinearLayout extends ViewGroup {
|
||||
|
||||
boolean orientation;
|
||||
|
||||
public LinearLayout(AttributeSet attrs) {
|
||||
super(attrs);
|
||||
public LinearLayout(Context context, AttributeSet attrs) {
|
||||
super(context, attrs);
|
||||
|
||||
native_constructor(attrs);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user