Is this allowed?
public Produto(Context context) {
super(context, this);
}
You're giving me an error:
Can not refer to 'this' nor 'super' while explicitly invoking a constructor
I'm trying to make a simple MVC for when I type produto.Save()
I can redeem the values that have been set below:
Produto produto1 = new Produto(this);
produto1.setId(1);
produto1.setNome("CELULAR");
produto1.setPreco(5.5);
produto1.Save();
The source of this is in this other question: Android getDeclaredFields value