EditableSeekBar

Combination of SeekBar and EditText. Android 4.1.2+

Sample Screenshot

Usage

For a working implementation in the sample app, see the app/ folder.

  1. Add the dependency in your build.gradle

        compile 'com.gregacucnik:editableseekbar:1.2'
  2. Include EditableSeekBar widget in your layout

            <com.gregacucnik.EditableSeekBar
                    android:id="@+id/esbExample"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    app:esbTitle="Example title"
                    app:esbMax="5000"
                    app:esbValue="1000" />
  3. (Optional) Use OnEditableSeekBarChangeListener to get callbacks for any changes

    • onEditableSeekBarProgressChanged(SeekBar seekBar, int progress, boolean fromUser) Sent when seekbar is moving
    • onStartTrackingTouch(SeekBar seekBar) Seekbar moving started by user touch
    • onStopTrackingTouch(SeekBar seekBar) Seekbar moving finished by user touch (also onEditableSeekBarValueChanged sent)
    • onEnteredValueTooHigh() Entered value is higher than maxValue
    • onEnteredValueTooLow() Entered value is lower than minValue
    • onEditableSeekBarValueChanged(int value) Current value after change or when keyboard dismissed

Customization

Android Arsenal

License

The MIT License (MIT)

Copyright (c) 2015 Grega Čučnik

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.