Skip to content

Commit

Permalink
1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
yizems committed Dec 22, 2016
1 parent 7d41fa4 commit 5e156e6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,18 @@ allprojects {
}
//module
dependencies {
compile 'com.github.yizeliang:RulerView:1.3'
compile 'com.github.yizeliang:RulerView:1.4'
}
```

## 5更新日志

### 1.4版本

- 修改版本号
- 加入 设置数量方法

### 1.3版本

- 加入 基线 文字,刻度 的位置变化属性
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -715,4 +715,22 @@ public void setMidLineColor(int midLineColor) {
this.midLineColor = midLineColor;
computeYPostion();
}

public int getMaxLineCount() {
return maxLineCount;
}

public void setMaxLineCount(int maxLineCount) {
this.maxLineCount = maxLineCount;
computeYPostion();
}

public int getMidLineCount() {
return midLineCount;
}

public void setMidLineCount(int midLineCount) {
this.midLineCount = midLineCount;
computeYPostion();
}
}

0 comments on commit 5e156e6

Please sign in to comment.