Posts by Victor Vicari • 13 points
1 post
-
1
votes1
answer53
viewsQ: Error trying to fetch Sqlite ID via Spinner
Object Book public class Livros { private int id; private String nome; public Livros() {} public Livros (int id, String nome) { this.id = id; this.nome = nome; } public int getId () { return id; }…