i have kept tags for each of the cell inside a GridView
. once the gridview is drawn by a custom adapter that i have made, i wish to access one specific cell inside the gridview.
i have tried the following:
view = mygridView.findViewWithTag(tag);
but the view returned is null. how do i access the cell inside the gridview?
thank you in advance.