MultiSpinner


Source link: https://github.com/thomashaertel/MultiSpinner

MultiSpinner

Android Spinner Widget with multi selectable list

Overview

MultiSpinner is a class with can be used by Android developers that need a spinner widget with multi selection capabilities. When the user touches on the spinner widget a dialog pops up with a checkbox list.

Usage

Integrating the widget is quite simple. In your layout.xml add the following snippet:

... <com.thomashaertel.widget.MultiSpinner
  android:id="@+id/spinnerMulti"
  android:layout_width="match_parent"
  android:layout_height="wrap_content" /> ...

After inserting the widget in your layout add the following code to your activity:

public class MyActivity extends Activity {

  private MultiSpinner spinner;

  private ArrayAdapter<String> adapter;

@Override

  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

  // create spinner list elements

adapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item);

adapter.add("Item1");

adapter.add("Item2");

adapter.add("Item3");

adapter.add("Item4");

adapter.add("Item5");

  // get spinner and set adapter

spinner = (MultiSpinner) findViewById(R.id.spinnerMulti);

spinner.setAdapter(adapter, false, onSelectedListener);

  // set initial selection

boolean[] selectedItems = new boolean[adapter.getCount()];

selectedItems[1] = true; // select second item

spinner.setSelected(selectedItems);

  
}

private MultiSpinner.MultiSpinnerListener onSelectedListener = new MultiSpinner.MultiSpinnerListener() {

public void onItemsSelected(boolean[] selected) {

 // Do something here with the selected items

}

  
}
;
 
}

Building

Gradle

From Bintray

Add maven central to your build.gradle:

buildscript {

repositories {

  jcenter()

}
 
}
  repositories {

jcenter() 
}

From maven central

Add maven central to your build.gradle:

buildscript {

repositories {

  mavenCentral()

}
 
}
  repositories {

mavenCentral() 
}

Then declare MultiSpinner within your dependencies:

dependencies {

...
compile('com.thomashaertel:multispinner:0.1.0@aar') {

}

... 
}

Maven

From maven central

To use MultiSpinner within your maven build simply add

<dependency>
<artifactId>multispinner</artifactId>
<version>${
multispinner.version
}
</version>
<groupId>com.thomashaertel</groupId> </dependency>

to your pom.xml

If you also want the sources or javadoc add the respective classifier

  <classifier>sources</classifier>

or

  <classifier>javadoc</classifier>

to the dependency.

License

Resources

An Android component to show circle progress in percentage.

A custom ViewPager can unlimited scrolling and auto scroll.

Android RecyclerView CommonAdapter. It is simple to create an adapter and add ItemClickListener / ItemLongClickListener.

Meet Fireworky Pull To Refresh for Android

It’s time to add some creativity to good old pull to refresh view. You can now literally launch your feed content or search results like a firework! Entertain your app users while they are waiting for refreshment — it’s easy with Fireworky Pull To Refresh library for Android apps.

What will you receive by using the Fireworky Pull To Refresh component in your app? The answer is pretty obvious: original and inspiring design element to generate well-disposed users. So, here you go!

An Android library that makes any view to be zoomable which mimics the Instagram Zoom feature.

This is a simple extensible android library that allows you to use an image for a loading indication. There are a couple of build-in indicators such as

  • BlurIndicator
  • ColorFillerIndicator
  • PixelizeIndicator
  • CircularIndicator
  • AlphaIndicator
  • RandomBlockIndicator

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