tilo1583 wrote: > I am using GridView using AdapterView. Therefore, I cannot remove > Views from the grid view,http://developer.android.com/reference/ > android/widget/AdapterView.html So, this technique is not going to > work. > Do you know any other technique/ work around to remove views from an > adapter view?
You don't remove Views from an AdapterView. You remove data from the underlying Adapter (e.g., remove() on ArrayAdapter, requery() on a Cursor used by CursorAdapter). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Development Wiki: http://wiki.andmob.org -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

