Updating GridView child
问题 I have a GridView loaded in an Activity with fragments present. The GridView itself is not located in a Fragment. I created a customer adapter by way of BaseAdapter and everything is working peachy. CustomerAdapter.java @Override public View getView( int position, View convertView, ViewGroup parent ) { ImageView v = new ImageView( activity ); Bitmap bmp = getBitmap( videoIds[ position ] ); v.setImageBitmap( bmp ); v.setAdjustViewBounds( true ); v.setPadding( 5, 5, 5, 5 ); v.setId( position );