ScrollChoice


Source link: https://github.com/webianks/ScrollChoice

ScrollChoice

Scrollable view which can be used to give different choices to user with nice ui.

Preview

Add With Gradle Dependency

compile 'com.webianks.library:scroll-choice:1.0.1'

Maven:

<dependency>
<groupId>com.webianks.library</groupId>
<artifactId>scroll-choice</artifactId>
<version>1.0.1</version>
<type>pom</type> </dependency>

Min SDK

15

Compile SDK

25

Add ScrollChoice to layout

<com.webianks.library.scroll_choice.ScrollChoice

android:id="@+id/scroll_choice"

android:layout_width="match_parent"

android:layout_height="match_parent" />

From Java

Get the reference of ScrollChoice

ScrollChoice scrollChoice = (ScrollChoice) findViewById(R.id.scroll_choice);

Prepare your list items

List<String> data = new ArrayList<>();
 data.add("Brazil");
 data.add("USA");
 data.add("China");
 data.add("Pakistan");
 data.add("Australia");
 data.add("India");
 data.add("Nepal");
 data.add("Sri Lanka");
 data.add("Spain");
 data.add("Italy");
 data.add("France");

Add to the ScrollChoice object with default selected item index

scrollChoice.addItems(data,5);

Attach listener to listen to know which item was selected

scrollChoice.setOnItemSelectedListener(new ScrollChoice.OnItemSelectedListener() {

 @Override

 public void onItemSelected(ScrollChoice scrollChoice, int position, String name) {

  Log.d("webi",name);

 
}

}
);

Here 5 is the index of default selected item.

Customization Through XML

<!--Change background Color-->
  app:scroll_background_color="#212121" <!--Change selected item's background -->
  app:scroll_selected_item_background="#000000" <!--Change text color-->
  app:scroll_item_text_color="#f5f5f5" <!--Show/Hide atmospheric gradient effect on top-bottom items-->
  app:scroll_atmospheric="true" <!--Hide/show scroll indicator-->
  app:scroll_indicator="true" <!--Change indicator color-->
  app:scroll_indicator_color="#000000" <!--Align all items-->
  app:scroll_item_align="center" <!--Set selected item's text color-->
  app:scroll_selected_item_text_color="?attr/colorPrimary" <!--Set selected item position-->
  app:scroll_selected_item_position="center" <!--Set different text size-->
  app:scroll_item_text_size="17sp" <!--Set different indicator size-->
  app:scroll_indicator_size="1dp"

Test APK

Based on the awesome WheelPicker taken from SingleDateAndTimePicker by Florent CHAMPIGNY.

License

MIT License  Copyright (c) 2017 Ramankit Singh  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. 

Resources

Library to implement the Bottom Navigation component from Material Design guidelines.

ACN Android Framework is being developed to reduce application development effort and time providing custom...

  1. Application and Activity classes that encapsulate general configuration of application and initialization of many widely-used third-party libraries.
  2. View classes with sophisticated, yet easy-to-use features, powered by default views of Android and other third-party views shared on GitHub.

A library which extends ToggleButton to allow for a button that toggles between two images.

Android wrapper for Twilio's Phone Lookup API.

BugShaker allows your QA team and/or end users to easily submit bug reports by shaking their device. When a shake is detected, the current screen state is captured and the user is prompted to submit a bug report via email with this screenshot attached.

This library provides an Imageview which can paint a layer on top of the image. This feature could be used for text protection or to apply a tint to an image.

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