ScrollMe


Source link: https://github.com/salyangoz/scrollme-android

ScrollMe

An Android library automatically adds scroll up button to RecyclerView

Preview

For more information please see the website

Download

Download the latest JAR or grab via Gradle. (Project's gradle file): You can pull sample project and run how to use it simply or Basic usage shown below.

dependencies {

compile 'io.salyangoz.scrollme:scrollme:0.1.0' 
}

or Maven:

<dependency>
<groupId>io.salyangoz.scrollmeme</groupId>
<artifactId>scrollme</artifactId>
<version>0.1.0</version> </dependency>

Snapshots of the development version are available in Sonatype's snapshots repository.

Dependencies

Project uses AppCompat, Support, Design and Constraint libraries. This section is only inform you that library uses below implementations.

dependencies {

implementation 'com.android.support:appcompat-v7:26.0.1'
  implementation 'com.android.support:support-v4:26.0.1'
  implementation 'com.android.support:design:26.0.1'
  implementation 'com.android.support.constraint:constraint-layout:1.0.2'  
}

Usage

Usage

Layout XML

add xmlns:app="http://schemas.android.com/apk/res-auto"

You can customize 5 custom attributes shown below.

Parameter Key Default Value Type
sm_tint Floating button up icon color color
sm_backgroundColor Floating button background color color
sm_icon Floating up icon drawable
sm_clickable Floating button clickable boolean
sm_focusable Floating button focusable  boolean
sm_size Floating button size  enum(BIG,SMALL)
<io.salyangoz.scrollme.ScrollMeView

android:id="@+id/scrollMeView"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:fitsSystemWindows="true"

app:sm_backgroundColor="@android:color/white"

app:sm_icon="@drawable/ic_up"

app:sm_size="SMALL"

app:sm_tint="@color/colorAccent" /> 

Code

All you need to do is create ScrollMeView instance and set adapter of ScrollMeView. ScrollMeView uses RecyclerView inside. You can get more info like Adapter and demo data on our sample folder.

 //Define ScrollMeView  ScrollMeView mScrollMeView = (ScrollMeView) findViewById(R.id.scrollMeView);

//Set Adapter and populate data this is your custom data you can use whatever data adapter you want  List<Movie> movieList = new ArrayList<>();

 MoviesAdapter mAdapter = new MoviesAdapter(movieList);

RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManager(getApplicationContext());

 mScrollMeView.getmRecyclerView().setLayoutManager(mLayoutManager);

mScrollMeView.getmRecyclerView().setItemAnimator(new DefaultItemAnimator());

mScrollMeView.getmRecyclerView().setAdapter(mAdapter);
 

Special Thanks

Thank you Emre Aktürk for contributing and helping to create this library

License

Copyright 2017 Salyangoz Teknoloji, Inc.  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

The main Gravatar-android feature is a simple and fluid API. It fully supports Gravatar image requests as described in the official documentation and automatically computes the request URL.

Lightweight javac @Warning annotation.

glide-transformations is a transformation library providing a variety of image transformations for Glide.

Easily add slide-to-dismiss functionality to your Activity by calling Slidr.attach(this) in your onCreate(..) method.

SOAP has been losing ground to REST services in mobile the last years, thus losing attention. But SOAP isn't gone and many still use it. The thing is that it usually requires a lot of work from the dev to create and parse all the messages.

JSoap is an Android library which allows automatic handling of SOAP requests and resposes, making the process effortless to the user. It works on top of the well-known library KSOAP2.

DynamicCalendar library generates a custom calendar icon based on the date you provide. You can also change the background template of the generated date icon.

You can specify the font's typeface, size, position, color and the empty calendar icon.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes