Coder Social home page Coder Social logo

mohsen-dl / clicknumberpicker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from polok/clicknumberpicker

0.0 1.0 0.0 726 KB

Custom view to pick up a value from a given range using click button or swiping.

License: Apache License 2.0

Java 100.00%

clicknumberpicker's Introduction

#ClickNumberPicker Custom view to pick up a value from a given range using click button or swiping.

###Version: 0.1.2

License

Notice that ClickNumberPicker is a project under development. So far it contains very basic stuff and has some annoying restrictions but after few months of not doing anything with it, I decided to publish and hopefully this will be my motivation to finally improve it. ####Welcome to fork and pull request.

###Screenshot image

#Integration

dependencies {
    compile 'com.github.polok:clicknumberpicker:0.1.2'
}
Using Maven:
<dependency>
    <groupId>com.github.polok</groupId>
    <artifactId>clicknumberpicker</artifactId>
    <version>0.1.2</version>
</dependency>

#Usage

######Add a picker in your xml layout file

    <pl.polak.clicknumberpicker.ClickNumberPickerView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:picker_corner_radius="10"
        app:pickers_background_color="#3F51B5"
        app:swipe_enabled="false"
        app:value_background_color="#5C6BC0"
        app:value_text_color="@android:color/white"/>

######Set a listener to be notified when value has changed:

    picker.setClickNumberPickerListener(new ClickNumberPickerListener() {
        @Override
        public void onValueChange(float previousValue, float currentValue, PickerClickType pickerClickType) {
        }
    });

######Set picker's current value:

    picker.setPickerValue(69f);

######Get picker's current value:

    picker.getValue();

#Attributes

There are several attributes you can set:

attr description
value current picker value. Default is 0
min_value Min picker value. Default is 0
max_value Max picker value. Default is 100
step Step value. Default is 1
decimal_number Round value after comma. Default is 2
integer_priority If current value is integer, show it without fraction part. Default is false
value_background_color Value background color
pickers_background_color Pickers background color
swipe_animation Flag to allow swipe animation. Default is false
value_animation_up Flag to turn on or off value change up animation. Default is false
value_animation_down Flag to turn on or off value change down animation. Default is false
animation_value_down_duration Duration of animation down
animation_value_up_duration Duration of animation up
value_text_color Value text color
value_text_size Value text size
value_min_text_size Value text min size for animation down
value_max_text_size Value text max size for animation up
swipe_enabled enable or disable swipe gestures, default is true
value_view_offset Offset value for swiping animation
picker_corner_radius Pickers corner radius
picker_border_stroke_width Pickers border stroke width
picker_border_stroke_color Pickers border stroke color
animation_offset_left_duration Animation offset left duration
animation_offset_right_duration Animation offset right duration
left_picker_layout Left picker layout
right_picker_layout Right picker layout

License

Copyright 2016 Marcin Polak

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.

clicknumberpicker's People

Contributors

polok avatar egemenmede avatar wrbl606 avatar mohsen-dl avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.