Posts by Caião • 85 points
2 posts
-
5
votes1
answer120
viewsQ: Error with super(this) when calling a Java constructor
This is allowed? public Produto(Context context) { super(context, this); } You’re making a mistake : Cannot refer to 'this' nor 'super' while explicitly invoking a constructor I’m trying to make a…
-
3
votes1
answer121
viewsQ: Android getDeclaredFields value
I’m doing some studies of android, I don’t know much of the subject because I’m starting now, I would like to create a simple mvc of CRUD, where I want to call model.save(); So I created the…