From 83f29b95ea13660ae746efef8c4fbcf6780b6538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Vicente=20G=C3=B3mez=20S=C3=A1nchez?= Date: Fri, 1 Sep 2017 15:29:57 +0200 Subject: [PATCH 1/3] Set theme jekyll-theme-slate --- _config.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 _config.yml diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..c741881 --- /dev/null +++ b/_config.yml @@ -0,0 +1 @@ +theme: jekyll-theme-slate \ No newline at end of file From 5fcf96f8ebcd4973ce1046327fa8edc062af141f Mon Sep 17 00:00:00 2001 From: Silvio Pereira Date: Thu, 2 Nov 2017 10:44:45 -0200 Subject: [PATCH 2/3] Minor typing fixes in README.md (#41) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 840d5cb..4e5cc57 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Renderers [![Build Status](https://travis-ci.org/pedrovgs/Renderers.svg?branch=m **Renderers is an Android library created to avoid all the RecyclerView/Adapter boilerplate** needed to create a list of data in your app and all the spaghetti code that developers used to create following the ``ViewHolder`` classic implementation. **As performance is also important for us, we've added a new ``diffUpdate`` method supporting differential updated transparently.** -With this library you can improve your RecyclerView/Adapter/ViewHolder code. The one we sometimes we copy and paste again and again :smiley:. Using this library you wont need to create any new class extending from ``RecyclerViewAdapter``. +With this library you can improve your RecyclerView/Adapter/ViewHolder code. The one sometimes we copy and paste again and again :smiley:. Using this library you won't need to create any new class extending from ``RecyclerViewAdapter``. Create your ``Renderer`` classes and declare the mapping between the object to render and the ``Renderer``. The ``Renderer`` will use the model information to draw your user interface. You can reuse them in all your RecyclerView and ListView implementations easily. That's it! @@ -15,9 +15,9 @@ Screenshots Usage ----- -To use Renderers Android library and get your you only have to follow three steps: +To use Renderers Android library you only have to follow three steps: -* 1. Create your ``Renderer`` class or classes extending ``Renderer``. Inside your ``Renderer`` classes you will have to implement some methods to inflate the layout you want to render and implement the rendering algorithm. +* 1. Create your ``Renderer`` class or classes extending ``Renderer``. Inside your ``Renderer`` classes. You will have to implement some methods to inflate the layout you want to render and implement the rendering algorithm. ```java public class VideoRenderer extends Renderer