Fabio Hellmann

Results 24 comments of Fabio Hellmann

The Exception I got is fixed with my Pull Request #23. Could you try, if it is also fixed for you?

@cblock The Call to remove a card from the Adapter is inside of the OnDismissCallback. You're right. Currently the Adapter is not Thread save. I will fix this after my...

@eeandrew Your Bug does not come from your Card Code. Dismissing the Card will be called from the SwipeDismissListener which calls the OnDismissCallback where the Card will be removed then....

@maarek do you already use the current version (3.0.1) of MaterialList?

You only need you use an object instead of a class type at the provider definition. ``` java //... .withProvider(new SimplePhotoCard()) //... ```

Now I got it. The getConfig() method was replaced by [getProvider()](https://github.com/dexafree/MaterialList/blob/master/materialList/src/main/java/com/dexafree/materialList/card/Card.java#L36).

The animations are not yet enabled. This will fix my PR #98.

The layout for [material_big_image_card_layout](https://github.com/dexafree/MaterialList/blob/master/materialList/src/main/res/layout/material_big_image_card_layout.xml) does not contain a description textview by default. If you want to have a description field, you can define your own layout.

You got this error due to the fact, that you have'nt defined a layout for the card you want to add to the MaterialListView. ``` java Card card = new...

I think the easiest way is to copy the layout code from [here](https://github.com/dexafree/MaterialList/blob/master/materialList/src/main/res/layout/material_welcome_card_layout.xml) to your own layout file and define the icon you want.