I have a custom listview that uses the CustomAdapter
when clicking on a row, it sends me to another modification activity, but I do not want to reload the list, that is, when the name is modified in the other activity when I return < em> How do I change the name in the row I had selected without reloading the entire listview?
Thus I enter with click:
registrados.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
//En esta parte me manda al otro activity donde modifico la informacion en sqlite del elemento seleccionado
}
});