etsy / AndroidStaggeredGrid

An Android staggered grid view which supports multiple columns with rows of varying sizes.
https://github.com/etsy/AndroidStaggeredGrid
4.76k stars 1.13k forks source link

Some warnings in logcat. #59

Closed Lesik closed 10 years ago

Lesik commented 10 years ago
 15041               dalvikvm  W  method Lcom/etsy/android/grid/ExtendableListView;.fillGap incorrectly overrides package-private method with same name in Landroid/widget/AbsListView;
 15041               dalvikvm  W  method Lcom/etsy/android/grid/ExtendableListView;.getFooterViewsCount incorrectly overrides package-private method with same name in Landroid/widget/AbsListView;
 15041               dalvikvm  W  method Lcom/etsy/android/grid/ExtendableListView;.getHeaderViewsCount incorrectly overrides package-private method with same name in Landroid/widget/AbsListView;
 15041               dalvikvm  W  method Lcom/etsy/android/grid/ExtendableListView;.invokeOnItemScrollListener incorrectly overrides package-private method with same name in Landroid/widget/AbsListView;
 15041               dalvikvm  W  method Lcom/etsy/android/grid/ExtendableListView;.rememberSyncState incorrectly overrides package-private method with same name in Landroid/widget/AdapterView;
 15041               dalvikvm  W  method Lcom/etsy/android/grid/ExtendableListView;.reportScrollStateChange incorrectly overrides package-private method with same name in Landroid/widget/AbsListView;

I am just using the library normally. No steps to reproduce except for using this library. There is no code of mine mentioned.

denizmveli commented 10 years ago

Yes this is a side effect of the grid trying it's best to mimic a the AbsListView contract even though some methods are closed off.

I don't believe I can prevent these warnings but if anyone knows how please chime in.