BannerTime


Source link: https://github.com/jcmore2/BannerTime

BannerTime

BannerTime create a scheduled popup to show your personal message

Usage

Add library to your build.gradle:

  compile 'com.jcmore2.bannertime:bannertime:1.1.1' 

If you don´t want to use Picasso Library (You may notice that you are not be able to use "imageBanner()" and "imageBannerPlaceholder()" methods):

 compile ('com.jcmore2.bannertime:bannertime:1.1.1') {

exclude module: 'picasso'
  
}

  

Init BannerTime in your onResume() Activity:

 @Override
  protected void onResume() {

super.onResume();

 BannerTime.init(this)

.shownTime(4000)

.hiddenTime(3000)

.imageBanner("http://pre03.deviantart.net/2aa0/th/pre/f/2012/321/d/1/african_landscape_by_dasflon-d5l9t7c.jpg")

.withKOButton()

.withKOButton()

.show();

  
}
 

You can also use a callback:


  BannerTime.init(this)

  .shownTime(4000)

  .hiddenTime(3000)

  .imageBanner("http://pre03.deviantart.net/2aa0/th/pre/f/2012/321/d/1/african_landscape_by_dasflon-d5l9t7c.jpg")

  .withKOButton()

  .withKOButton()

  .show(new BannerTime.BannerTimeListener() {

@Override

public void onShow() {

 Toast.makeText(mContext, "onShow", Toast.LENGTH_SHORT).show();

}

 @Override

public void onDismiss() {

 Toast.makeText(mContext, "onDismiss", Toast.LENGTH_SHORT).show();

 
}

 @Override

public void onClickOk() {

 Toast.makeText(mContext, "onClickOk", Toast.LENGTH_SHORT).show();

 
}

 @Override

public void onClickKO() {

 Toast.makeText(mContext, "onClickKO", Toast.LENGTH_SHORT).show();

 
}

 @Override

public void onClickImage() {

 Toast.makeText(mContext, "onClickImage", Toast.LENGTH_SHORT).show();

 
}

  
}
);
 

Init BannerTime with your custom view:


 LayoutInflater layoutInflater = (LayoutInflater) mContext.

  getSystemService(Context.LAYOUT_INFLATER_SERVICE);

  View contentView = layoutInflater.inflate(R.layout.custom_banner, null);

BannerTime.init(this)

  .shownTime(4000)

  .hiddenTime(3000)

  .withView(contentView)

  .setGravity(BannerTime.TOP)

  .show();
 

Pause BannerTime using:

 @Override
  protected void onPause() {

super.onPause();

BannerTime.onPause();

  
}
  

You can check the sample App!

Libraries Used

Picasso by Square

Credits & Contact

FreeView was created by [email protected]

License

BannerTime is available under the Apache License, Version 2.0.

Resources

This library will help you to receive android screenshot events.

The libray support sfl4j for android platform at the moment not support Mapped Diagnostic Context (MDC) support.

FunctionalRx2 is a collection of constructs to simplify a functional programming approach to development on Java and Android.

Rich url link view for Android.

Kripton is a java library, for Android and Java platform, that provides a simple and uniform way to manage persistence of Java classes in different flavours through annotations and interface. Supported persistence methods are:

  • SQLite database
  • Shared preference
  • REST service, throws Retrofit library integration
  • on file system in JSON/XML/CBOR/(Java)YAML/smile data format

To get max performance and avoid boilerplate-code, Kripton use annotation processor. With the power of annotation processor is possible to create code to persist a java class, simply with an annotation. There are many other libraries that do this, but Kripton allows to persists java object in different ways with an unique set of annotation and mechanisms.

The easiest way to use a RecyclerView on Android.

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