Skip to content

Commit

Permalink
Merge pull request #11 from hveiras/master
Browse files Browse the repository at this point in the history
Added set height methods
  • Loading branch information
daimajia committed Oct 18, 2014
2 parents e83943f + 3a34fd9 commit e8a47fe
Showing 1 changed file with 8 additions and 2 deletions.
Expand Up @@ -362,8 +362,6 @@ public float getUnreachedBarHeight(){
return mUnreachedBarHeight;
}



public void setProgressTextSize(float TextSize) {
this.mTextSize = TextSize;
mTextPaint.setTextSize(mTextSize);
Expand All @@ -388,6 +386,14 @@ public void setReachedBarColor(int ProgressColor) {
invalidate();
}

public void setReachedBarHeight(float height){
mReachedBarHeight = height;
}

public void setUnreachedBarHeight(float height){
mUnreachedBarHeight = height;
}

public void setMax(int Max) {
if(Max > 0){
this.mMax = Max;
Expand Down

0 comments on commit e8a47fe

Please sign in to comment.