From 02b9374f3782d7b068adfa590ced93f73262c046 Mon Sep 17 00:00:00 2001 From: Shaun Date: Fri, 7 Aug 2015 12:59:21 +0800 Subject: [PATCH] Minor spelling error --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4cb2357..c168650 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Don't forget to add the namespace to your root XLM element xmlns:scrolling_image_view="http://schemas.android.com/apk/res-auto" ``` -In your Java code you can start and stop the animation like this: +In your Java code, you can start and stop the animation like this: ```java ScrollingImageView scrollingBackground = (ScrollingImageView) loader.findViewById(R.id.scrolling_background); scrollingBackground.stop(); @@ -44,7 +44,7 @@ scrollingBackground.start(); ``` ## Parallax effect -In order to achieve a parallax effect you can stack multiple `ScrollingImageView`'s in a `FrameLayout` with diffirent speeds, for example: +In order to achieve a parallax effect, you can stack multiple `ScrollingImageView`'s in a `FrameLayout` with different speeds. For example: ```xml