Hannes Dorfmann

Results 80 issues of Hannes Dorfmann

We could leverage the power of kotlin DSL even more to add support for `DiffUtils`. Something like that: ```kotlin fun catAdapterDelegate() = adapterDelegate(R.layout.item_cat) { val name : TextView = findViewById(R.id.name)...

Automatically detect fields from the corresponding xml layout files by checking for views with an id. So you don't have to specify fields for the view holder by hand with`@Field`...

enhancement

Remove the delegator map. Make it part of the `AdapterBinder` interface so that everyone Adapater has to return a instance of its delegate by its own, completely without reflections.

enhancement

Often you have to cast the data model (retrieved from a list) to a specific class for each view type. Even if its not a big deal it would be...

enhancement