Hey guys, hope you haven’t started developing a tutorial for your Android app yet, as we have already completed a part of your job. Don’t worry, we act from good motives only. Our aim is to help you create a sliding tutorial in a fast and simple manner. So we’ve done some work and voila!. A simple Android Sliding Tutorial library is at your service.
Also you can watch the animation of the Sliding Tutorial for Android on YouTube in HD quality.
The invention is going to ease the problem of structural design but not to limit a stretch of your imagination at the same time. We took care of the suitability aspect. So, your app is not going to look alien among other Android elements.
Read our Case Study: Sliding tutorial for Android by Cleveroad to make sure that you don’t miss a detail:
Applied parallax effects will make your product presentation look like Google apps tutorial.
All you need to do is:
1. Create background designs for each screen of your tutorial (assistance with mobile design)
2. Create icons for each screen of your tutorial
3. Follow the instructions below
##Using
First, add gradle dependency with command:
dependencies{compile 'com.cleveroad:slidingtutorial:0.9.5' }After you have to create each fragment that must extend from PageFragment. Also you have to create your xml file with images.
publicclassFirstCustomPageFragmentextendsPageFragment{@OverrideprotectedintgetLayoutResId(){// layout id of fragmentreturnR.layout.fragment_page_first} @OverrideprotectedTransformItem[] provideTransformItems(){// list of transformation itemsreturnnewTransformItem[]{newTransformItem(R.id.ivFirstImage, true, 20), newTransformItem(R.id.ivSecondImage, false, 6), newTransformItem(R.id.ivThirdImage, true, 8), newTransformItem(R.id.ivFourthImage, false, 10), newTransformItem(R.id.ivFifthImage, false, 3), newTransformItem(R.id.ivSixthImage, false, 9), newTransformItem(R.id.ivSeventhImage, false, 14), newTransformItem(R.id.ivEighthImage, false, 7) }} }Then you should provide these fragments in main slidingtutroial fragment
publicclassCustomPresentationPagerFragmentextendsPresentationPagerFragment{@OverridepublicintgetLayoutResId(){// layout id of fragmentreturnR.layout.fragment_presentation} @OverridepublicintgetViewPagerResId(){// id of view pagerreturnR.id.viewPager} @OverridepublicintgetIndicatorResId(){// id of circular indicatorreturnR.id.indicator} @OverridepublicintgetButtonSkipResId(){// id of skip buttonreturnR.id.tvSkip} @OverrideprotectedintgetPagesCount(){// total number of pagesreturn3} @OverrideprotectedPageFragmentgetPage(intposition){// get page for positionif (position == 0) returnnewFirstCustomPageFragment(); if (position == 1) returnnewSecondCustomPageFragment(); if (position == 2) returnnewThirdCustomPageFragment(); thrownewIllegalArgumentException("Unknown position: " + position)} @ColorInt@OverrideprotectedintgetPageColor(intposition){// get color of pageif (position == 0) returnContextCompat.getColor(getContext(), android.R.color.holo_orange_dark); if (position == 1) returnContextCompat.getColor(getContext(), android.R.color.holo_green_dark); if (position == 2) returnContextCompat.getColor(getContext(), android.R.color.holo_blue_dark); returnColor.TRANSPARENT} @OverrideprotectedbooleanisInfiniteScrollEnabled(){// enable/disable infinite scroll behaviorreturntrue} @OverrideprotectedbooleanonSkipButtonClicked(){// your own behavior goes here// ...// return true to consume click event, false otherwisereturntrue} }| Version | Changes |
|---|---|
| v.0.9.5 | Added getters for views. Possible fix for manifest merging issues |
| v.0.9.4 | Renamed all attributes; all resources marked as private |
| v.0.9.3 | Fixed issue with wrong page showed at startup if pages count not equals 3 |
| v.0.9.2 | Added onSkipButtonClicked method and SimplePagerFragment |
| v.0.9.1 | Added infinite scroll behavior |
| v.0.9 | First public release |
- All resources marked as private. Make sure you're not using any resource (strings, dimens, etc) from this library.
- All attributes were renamed, prefix
st_added. Add this prefix to any custom XML attribute you used. Example:
<com.cleveroad.slidingtutorial.CirclePageIndicator android:id="@+id/indicator"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_gravity="center"app:st_fillColor="@android:color/white"app:st_pageColor="@android:color/secondary_text_light_nodisable"app:st_radius="4dp"app:st_strokeColor="#00000000"app:st_strokeWidth="0dp"/>####CirclePageIndicator This class is final now. Make sure you're not extending from it.
####LayersHolder This class is package-local now. Make sure you're not using it.
####PageFragment getRootResId() and getBackgroundColorResId() methods are deprecated. You can remove them now. To specify page's color use PresentationPagerFragment.getPageColor(int) method.
####PresentationPagerFragment getPageFragments() method is deprecated. You can remove it now. Use getPagesCount() and getPage(int) methods instead.
Added isInfinityScrollEnabled() method. Override it and return true to enable this feature.
NOTE: make sure you're returning new fragment instance when displaying tutorial with infinite scroll enabled.
If you have any questions regarding the use of this tutorial, please contact us for support at info@cleveroad.com (email subject: «Sliding android app tutorial. Support request.»)
or
Use our contacts:
Cleveroad.com
Facebook account
Twitter account
Google+ account
The MIT License (MIT) Copyright (c) 2015-2016 Cleveroad Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 


