Giter Site home page Giter Site logo

progressview's Introduction

ProgressView

简介

ProgressView是一个可以定制的镂空加载button,支持设置边框宽度,按钮颜色。

示例

screenshot

使用方法

添加依赖

gradle

/build.gradle

repositories {
    ...
    maven { url 'https://jitpack.io' }
}

/app/build.gradle

dependencies {
    ...
    compile 'com.github.NightFarmer:ProgressView:v1.0'
}

布局文件

    <com.nightfarmer.progressview.ProgressView
        android:id="@+id/progressView"
        android:layout_width="100dp"
        android:layout_height="50dp" />

代码设置(kotlin)

    //设置按钮主色
    progressView.color = ContextCompat.getColor(this, R.color.yourColor)
    //设置按钮边框宽度
    progressView.borderWidth = 5f
    //设置按钮圆角半径
    progressView.radius = 20f
    //设置按钮初始化进度
    progressView.progress = 0f
    //设置按钮文字尺寸
    progressView.textSize = 50f

    progressView.onStart = {
        //点击开始回调
    }
    progressView.onPause = {
        //点击暂停回调
    }
    progressView.onResume = {
        //点击继续回调
    }
    progressView.onOpen = {
        //点击打开回调
    }

    //设置按钮状态
    progressView.state = ProgressView.ProgressState.Loading
    progressView.state = ProgressView.ProgressState.Paused
    progressView.state = ProgressView.ProgressState.Finished
    progressView.state = ProgressView.ProgressState.IDLE

    //自定义状态文字
    progressView.idleText = "下载"
    progressView.loadingTextRender = { progress: Float -> "${(progress * 100).toInt()}%" }
    progressView.pausedText = "暂停"
    progressView.finishedText = "完成"

progressview's People

Contributors

nightfarmer avatar

Watchers

James Cloos avatar  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.