Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
app
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

StepView

StepView is a step indicator like this:

Capture

How to use

Gradle dependency Make sure jcenter was declared in your root build.gradle file:

repositories {
    jcenter()
}

Then add this dependency, modify the version to the latest version.

dependencies {
    compile 'com.githang:stepview:0.1'
}

Layout Code

    <com.githang.stepview.StepView
        android:id="@+id/step_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/white"
        android:paddingBottom="8dp"
        android:paddingTop="8dp"/>

Java Code

        mStepView = (StepView) findViewById(R.id.step_view);
        List<String> steps = Arrays.asList(new String[]{"输入手机", "验证手机", "设置密码", "注册成功"});
        mStepView.setSteps(steps);

Support attributes:

You can use these attributes to custom the StepView:

    <attr name="svCircleColor" format="color"/>
    <attr name="svTextColor" format="color"/>
    <attr name="svSelectedColor" format="color"/>
    <attr name="svFillRadius" format="dimension"/>
    <attr name="svStrokeWidth" format="dimension"/>
    <attr name="svLineWidth" format="dimension"/>
    <attr name="svTextSize" format="dimension"/>
    <attr name="svDrawablePadding" format="dimension"/>

About

StepView for android

Topics

Resources

License

Packages

No packages published

Languages

You can’t perform that action at this time.