BannerSlider


Source link: https://github.com/saeedsh92/Banner-Slider

Banner-Slider

Banner slider is an easy to use library for making beautiful sliders in your android app.

How to download

Gradle

add this line to your module build.gradle dependecies block:

compile 'com.ss.bannerslider:bannerslider:1.8.0' 

Maven

<dependency>
<groupId>com.ss.bannerslider</groupId>
<artifactId>bannerslider</artifactId>
<version>1.6.1</version>
<type>pom</type> </dependency> 

How use this library

XML

<ss.com.bannerslider.views.BannerSlider
 android:id="@+id/banner_slider1"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 />

Java

 BannerSlider bannerSlider = (BannerSlider) findViewById(R.id.banner_slider1);

  List<Banner> banners=new ArrayList<>();

  //add banner using image url
  banners.add(new RemoteBanner("Put banner image url here ..."));

  //add banner using resource drawable
  banners.add(new DrawableBanner(R.drawable.yourDrawable));

  bannerSlider.setBanners(banners);

You want more customization?

Xml

Changing slides automatically in specifed periods

interval attribute get miliseconds.

  app:interval="5000"

Loop slides

  app:loopSlides="true"

Use default page indicators

currently banner slider has 4 styles.

  app:defaultIndicators="circle"

Choose default banner to show up first

you must pass banner position to it:

  app:defaultBanner="1"

Enable/disable indicators animations

in default, animations are enabled

  app:animateIndicators="true"

Use custom Indicators

if you also set default indicators, then this attributes will ignored

  app:selected_slideIndicator="@drawable/selected_slide_indicator"
app:unselected_slideIndicator="@drawable/unselected_slide_indicator"

How set empty view, when banners not received from server yet?

  app:emptyView="@layout/layout_empty_view"

Change indicator sizes

  app:indicatorSize="12dp"

Set OnBannerClickListener

bannerSlider.setOnBannerClickListener(new OnBannerClickListener() {

@Override
public void onClick(int position) {

 Toast.makeText(MainActivity.this, "Banner with position " + String.valueOf(position) + " clicked!", Toast.LENGTH_SHORT).show();

  
}

}
);

Remove all banners

 bannerSlider.removeAllBanners();

Licence

Copyright 2016 Saeed Shahini

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.

Author

Saeed shahini

email: [email protected]

github: https://github.com/saeedsh92

Resources

CustomType allows you to easily use different typfaces in your app. It was created to initially work with the Roboto family of fonts, but has since been adapted to allow you to use any typeface that you would like.

CustomType maintains static Typeface objects to avoid potential memory leaks that can occur. Hence, it is the ideal manner of using any custom typeface in your app, regardless of whether or not it belongs to the Roboto family.

An Android transformation library providing a variety of image transformations for Picasso.

This project collects and aggregates information about Android devices. It is designed to be open and transparent. All data is available and can be downloaded by everyone.

Google Direction API and Google Place API Library for Google Maps Android API v2.

Android-RoundCornerProgressBar is a colorful progress bar with round corner on progress which you can customized.

Feature:

  • Round value configurable (recommend dp) for a corner of progress bar
  • Color changeable for a progress
  • Adjust padding range between progress bar and progress or between image icon and progress
  • Easy, easy and easy to use

Pollfish is a survey platform which provides access to millions of smartphone users.

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