MaterialNumberPicker


Source link: https://github.com/StephenVinouze/MaterialNumberPicker

MaterialNumberPicker

This library takes over the repository that I originally created but seems no longer maintained. It was ported in Kotlin to provide clearer and more optimized code, and includes various features that are still pending in the previous library. It also provide optionals and nullables with a custom constructor so that you can customize your picker the way you want without using a boredom builder pattern.

Native NumberPicker MaterialNumberPicker (default) MaterialNumberPicker (custom)

Gradle Dependency

Add this in your root build.gradle file:

allprojects {
  repositories {

maven {
 url "https://jitpack.io" 
}
  
}
 
}

Then add the dependencies that you need in your project.

dependencies {

  compile "com.github.StephenVinouze:MaterialNumberPicker:{
latest_version
}
" 
}

Usage

Both XML and programmatic instanciations are supported :

<com.github.stephenvinouze.materialnumberpickercore.MaterialNumberPicker

android:layout_width="match_parent"

android:layout_height="match_parent"

app:mnpMaxValue="50"

app:mnpMinValue="1"

app:mnpEditable="false"

app:mnpFontname="Hand.ttf"

app:mnpSeparatorColor="@color/colorAccent"

app:mnpTextColor="@color/colorPrimary"

app:mnpTextSize="16sp"

app:mnpTextStyle="bold"

app:mnpValue="10"

app:mnpWrapped="false" />
val numberPicker = MaterialNumberPicker(

context = this,

minValue = 1,

maxValue = 50,

value = 10,

separatorColor = ContextCompat.getColor(this, R.color.colorAccent),

textColor = ContextCompat.getColor(this, R.color.colorPrimary),

textSize = resources.getDimensionPixelSize(R.dimen.numberpicker_textsize),

textStyle = Typeface.BOLD_ITALIC,

editable = false,

wrapped = false,

fontName = "Hand.ttf",

formatter = NumberPicker.Formatter {

 return@Formatter "Value $it"

}
 )

For Java users, I have overloaded the constructor so that it generates all possible constructors.

MaterialNumberPicker numberPicker = new MaterialNumberPicker(

this,

1,

50,

10,

ContextCompat.getColor(this, R.color.colorAccent),

ContextCompat.getColor(this, R.color.colorPrimary),

getResources().getDimensionPixelSize(R.dimen.numberpicker_textsize),

Typeface.BOLD_ITALIC,

false,

false,

"Hand.ttf",

new NumberPicker.Formatter() {

 @Override

 public String format(int i) {

  return "Value " + i;

 
}

}
 );

I have arranged the parameters in priority order but it is not as ideal as in Koltin because you can't name the attributes nor change their orders. However, all attributes are exposed with getter/setters so you can easily set the desired attributes after instanciating the picker with the default constructor.

MaterialNumberPicker numberPicker = new MaterialNumberPicker(this);
 numberPicker.setTextColor(ContextCompat.getColor(this, R.color.colorPrimary));

Once you have your number picker, you can present it by itself, or within an alert dialog :

AlertDialog.Builder(this)

.setTitle(title)

.setView(numberPicker)

.setNegativeButton(getString(android.R.string.cancel), null)

.setPositiveButton(getString(android.R.string.ok), {
 _, _ ->

 Toast.makeText(this, getString(R.string.picker_value, numberPicker.value), Toast.LENGTH_LONG).show()

}
)

.show()

The only attribute that cannot be defined through XML is the formatter that is natively included in the NumberPicker. It can be directly assigned from the custom constructor when instanciating programmaticaly. Note that all attributes have their own getter/setters and can be upcated anytime durnig your view's lifecycle.

We also provide a way to define either your text style within the picker or a custom font. Be aware though that once you define a custom font, the text style will be overriden by the custom font and won't be interpreted.

Pull requests

I welcome and encourage all pull requests. I might not be able to respond as fast as I would want to but I endeavor to be as responsive as possible.

All PR must:

  1. Be written in Kotlin
  2. Maintain code style
  3. Indicate whether it is a enhancement, bug fix or anything else
  4. Provide a clear description of what your PR brings
  5. Enjoy coding in Kotlin :)

Resources

Android Check is a static code analysis plugin for Android project.

material-calendarview is a better looking implementation of android's CalendarView. The goal is to have a more Material look and feel, rather than 100% parity with the platform's implementation.

SwitchPreferenceCompat allows to use SwitchCompat as preference.

Android AlertDialog that only shows once for a given string.

This is a subclass of AlertDialog with all its features supported. The only difference is that a key is provided in its initialization, which is used to check the default SharedPreferences and save itself once shown.

Use cases:

  • Show your app's recent updates prompt just once per version name.
  • Show a "rate now" prompt just once.
  • Quickly create a randomly shown message without worrying about the preferences.

Tree view implementation for Android.

A demonstration of handling Activities and Fragments using Dagger dependency injection framework

The real benefit here is that you create an object graph only when you need it. This contributes to keeping the memory footprint of your app as low as possible.

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