Access to a TextView in Activity from Listview Adapter in android
I have an Activity with a ListView and some TextViews like below, I want to call setText() method of TextViews in OnClickListener in fill() method of adapter. but I don't access to these TextViews ...! How can do this? ActivityMoshtari.class: public class ActivityMoshtari extends Activity { public ArrayList<StructMoshtariItem> moshtariItems = new ArrayList<StructMoshtariItem>(); public ArrayAdapter adaptermoshtari; ListView lstMoshtari; TextView txtInfoMoshtariName; TextView txtInfoMoshtariTel; TextView txtInfoMoshtariMob; @Override protected void onCreate(Bundle savedInstanceState) { super