Fabio Hellmann

Results 24 comments of Fabio Hellmann

There is no feature for increase/decrease left/right padding.

Is this issue fixed with the version 3.0.0 or greater?

You're also free to use my [fork](https://github.com/FHellmann/MaterialList). I've added new features and fixed the known bugs.

There have been some changes since 3.0.0. The special Providers are no longer accessable. They are all merged together in one single one called CardProvider (or ListCardProvider). If you want...

You can use it this way: ``` java MaterialListView listView = (MaterialListView) findViewById(R.id.materialListView); Card card = new Card.Builder(getContext()) .withProvider(new CardProvider()) .setLayout(R.layout.material_basic_buttons_card) .addAction(R.id.right_text_button, new TextViewAction(getContext()) .setText("Action") .setListener(new OnActionClickListener() {...})) .endConfig() .build();...

The class BasicImageButtonsCard does no longer exists. Check out the [examples](https://github.com/dexafree/MaterialList/blob/master/app/src/main/java/com/dexafree/materiallistviewexample/MainActivity.java#L103).

Try it with through the LayoutManager of the RecyclerView. Retrieve it with getLayoutManager() and then use the [.offsetChildrenHorizontal(int)](https://developer.android.com/reference/android/support/v7/widget/RecyclerView.LayoutManager.html#offsetChildrenHorizontal%28int%29) or the vertical one.

You could use the [GridLayoutManager](http://developer.android.com/reference/android/support/v7/widget/GridLayoutManager.html) and set it with [setLayoutManager(RecyclerView.LayoutManager)](http://developer.android.com/reference/android/support/v7/widget/RecyclerView.html#setLayoutManager%28android.support.v7.widget.RecyclerView.LayoutManager%29). If this should not work, you can define your own LayoutManager.

With #98 PR you can use the setDrawable(string) and setDrawable(int) with Picasso.

I've got the same exception in another context. See #24