ProgressView

A simple android view for numeric progress selection

Get apk

Download

    compile 'app.youkai.progressview:library:1.0.0'

Note: You might have to add jcenter() to your repositories.

Usage

Usage is extremely simple:

    <app.youkai.progressview.ProgressView
        android:id="@+id/progressView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:pv_showMax="true" />
    progressView.setMax(24);
    progressView.setListener(new ProgressView.OnProgressChangedListener() {
        @Override
        public void onProgressChanged(int progress) {
            Toast.makeText(MainActivity.this, "Progress: " + progress, Toast.LENGTH_SHORT).show();
        }
    });

    .
    .
    .

    progressView.getProgress();
    progressView.getMax();
    progressView.showMax(false);

Theming

By default, ProgressView uses your theme's colorAccent value as tint. While you can't directly set the a custom color, you can simply define a new theme with a different accent color and apply that on your ProgressView with android:theme="@style/MySpecialProgressViewTheme.

License

Copyright (C) 2017  Abdullah Khwaja, İhsan Işık, Matthew Dias

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.

Apache License Version 2.0 (LICENSE)