I created a listView where it shows my registered item, how do I to click the item I want it to open a new screen with the description and details of the item?
Class where my table is displayed:
public class MostraTodosOsLivrosActivity extends Activity {
private ListView lvMostraTodosOsLivros;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.view_mostra_todos_livros);
Button btCadastro = (Button) findViewById(R.id.btAbreCadastro);
lvMostraTodosOsLivros = (ListView) findViewById(R.id.lvMostraTodosOsLivros);
btCadastro.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent it = new Intent(MostraTodosOsLivrosActivity.this, CadastroLivroActivity.class);
startActivity(it);
}
});
}
@Override
protected void onResume() {
super.onResume();
DbHelper dbHelper = new DbHelper(this);
List<Livro> listaLivros = dbHelper.selectTodosOsLivros();
ArrayAdapter<Livro> adp = new ArrayAdapter<Livro>(this, android.R.layout.simple_list_item_1, listaLivros);
lvMostraTodosOsLivros.setAdapter(adp);
}