Arne Jans

Results 22 comments of Arne Jans

Do you refer to this NullPointerException in 1.0.1? > ``` > java.lang.NullPointerException: Attempt to read from field 'int android.view.ViewGroup$LayoutParams.width' on a null object reference > at android.view.ViewGroup$LayoutParams.(ViewGroup.java:7040) > at android.view.ViewGroup$MarginLayoutParams.(ViewGroup.java:7329)...

@frankiesardo correct me if I am wrong, but I guess, the LinearListView component doesn't recycle list-itemviews by design, as RecyclerView or ListView does. So it is bound to have performance...

Is it feasible to use the ObjectBox-support for Jetpack Pagination for this? Please see [my comment on this other closed issue](https://github.com/objectbox/objectbox-java/issues/475#issuecomment-782199826) for more details on how to possibly do that.

I didn't test this, but it should be possible to use Android Jetpack Paging with the ObjectBoxDataSource.Factory to get a LiveData-instance that supports limited items query, as described here: https://docs.objectbox.io/android/paging-architecture-components...

The troubleshooting-page works again, but does not show anything of relevance for this issue.

I don't think this has anything to do with DiffUtil. Try this before you set the adapter to the recyclerview: In Kotlin: ``` adapter.stateRestorationPolicy = RecyclerView.Adapter.StateRestorationPolicy.PREVENT_WHEN_EMPTY ``` In java: ```...

When will this version be released? GCM-Servers will be deactivated by Google on May 29th as per the following notice we got by mail: > Last year we announced that...

Hi @alexdao You are getting a blank page, because in your onCreateView, you are undoing the viewpager-binding by the following statement, thus inflating the layout anew and returning it to...

I just stumbled on this as I just increased the page-size of my paging list and wondered where the first-shown entities from the app-ui are. Turns out, they are on...

I would suggest to add a sort-button similar to the filter-button, and everytime this is pressed, add a row for property-selection and direction-dropdown. The sort-columns specified this way would then...