robin


Source link: https://github.com/sirvar/robin

🚀 Android login, made simple

Almost every app has a login and signup, so why do we re-write code everytime? Let robin handle that for you.

Usage

Add this to your build.gradle

compile 'com.sirvar:robin:0.0.1'

Create a new activity to handle login and signup requests that extends RobinActivity

public class MainActivity extends RobinActivity {

@Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

// DO NOT call setContentView();
 

 // Set title for each screen

setLoginTitle("Sign in to Robin");

setSignupTitle("Welcome to Robin");

setForgotPasswordTitle("Forgot Password");

// Set logo for screens

setImage(getResources().getDrawable(R.mipmap.ic_launcher));

// Use custom font across all views

setFont(Typeface.createFromAsset(getAssets(), "Montserrat-Medium.ttf"));

// Choose theme (default is LIGHT)

setTheme(Theme.LIGHT);

  
}
 
}

Themes

Theme Name Usage
Light Theme.LIGHT
Dark Theme.DARK *
Flat Theme.FLAT *
Gradient Theme.GRADIENT *
Blur Theme.BLUR *

* Coming soon

Configuration Options

Method Description
setLoginTitle(String title) Set the title of the login screen
setSignupTitle(String title) Set the title of the signup screen
setForgotPasswordTitle(String title) Set the title of the forgot password screen
setTheme(Theme theme) Set theme from Theme enum, options above
setImage(Drawable image) Set the Drawable image of all screens
setImage(Bitmap image) Set the Bitmap image of all screens
setFont(Typeface typeface) Set custom typeface to use across all screens
startLoginFragment() Changes the visible fragment to login
startSignupFragment() Changes the visible fragment to signup
startForgotPasswordFragment() Changes the visible fragment to forgot password
showLoginFirst() Shows login fragment on Activity launch
showSignupFirst() Shows signup fragment on Activity launch
enableSocialLogin() Displays Google and Facebook login buttons
disableSocialLogin() Hides Google and Facebook login buttons

Override Methods

onLogin(String email, String password)
onSignup(String name, String email, String password)
onForgotPassword(String email)
onGoogleLogin()
onFacebookLogin()

Resources

Chrome CustomTabs for Android demystified. Simplifies development and provides higher level classes including fallback in case Chrome isn't available on device.

Color picker for v7 Preference Support Library.

This lightweight library makes it easy to use HTTP requests. Although the purpose is to make the use of Json data easy, it also allows to retrieve the server response using other formats, XML and TEXT.

SpannedGridLayouManager is a layout manager that will resize and reorder views based on a provided SpanSize.

Photo Editor SDK contains a lot of features like edit, scale, rotate and draw on images like Instagram stories.

A reactive layer on top of universal image loader (easy and hassle-free) using RxJava 2.

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