Try one of the following:
imageView.setLayoutParams(AbsListView.LayoutParams(85, 85)) imageView.setLayoutParams( GridView@AbsListView.LayoutParams (85, 85))
Since GridView does not have its own implementation of LayoutParams, you need to choose the implementation of your superclass AbsListView . You can decide whether you want to add the GridView@ prefix.
source share