An open API service indexing awesome lists of open source software.

https://github.com/ac-alpha/numberpickerview

Simple number picker (increment/decrement)
https://github.com/ac-alpha/numberpickerview

android-ui customview

Last synced: about 2 months ago
JSON representation

Simple number picker (increment/decrement)

Awesome Lists containing this project

README

          

# NumberIncDecView
This app demonstrates creation of a simple custom view for picking numbers by incrementing or decrementing. The NumberPickerView also demonstrates how to add custom attributes to your custom view.

## Usage
To use this library, include the following code in your app's build.gradle file
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
and
```
dependencies {
compile 'com.github.ac-alpha:NumberPickerView:1.0'
}
```

## Understanding the code
The NumberIncDecView.java class inherits from the LinearLayout class. The data items value and onlyPositive specify the current value of displayed number and whether it is positive only or may take negative values.

The init() function takes TypedArray as parameter which is used to extract the attribute values from the xml file.

```
private void init(@Nullable AttributeSet attrs) {

plusButton = (Button) findViewById(R.id.btn_plus);
plusButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
upDateUI(1);
}
});
minusButton = (Button)findViewById(R.id.btn_minus);
minusButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
upDateUI(2);
}
});
valueText=(EditText)findViewById(R.id.edit_text);
valueText.setText(Integer.toString(value));

TypedArray ta = getContext().obtainStyledAttributes(attrs, R.styleable.NumberPickerView);

onlyPositive=ta.getBoolean(R.styleable.NumberPickerView_onlyPositive,true);
ta.recycle();

}
```

New attributes are added to the NumberIncDecView class by adding a attrs.xml resource file in the values directory

```xml



```

## Licence
This project is licensed under the Apache 2.0 License - see the [LICENSE.md](LICENSE.md) file for details