1
How I get the value of a particular item(Textview) from listview.
I’m trying something like this:
public void onItemClick(AdapterView<?> a, View v, int position, long id) {
Object obj =a.getItemAtPosition(position);
String mensagem = "Cliente Selecionado: " + obj;
Toast.makeText(getApplicationContext(), mensagem, Toast.LENGTH_SHORT)
.show();}
but returns the selected client and that’s not what I need. I remember that in my listview there are several Textview
Exactly what I needed, worked, thanks @wakim!
– Emerson Barcellos