Skip to content

Commit

Permalink
修改命名。
Browse files Browse the repository at this point in the history
  • Loading branch information
teach committed Apr 28, 2019
1 parent 9c018fb commit 0891e21
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ dependencies {
app:labelTextPaddingTop="5dp"
app:lineMargin="10dp" //行与行的距离
app:wordMargin="10dp" //标签与标签的距离
    app:selectType="SINGLE"   //标签的选择类型 有单选(可反选)、单选(不可反选)、多选、不可选四种类型
app:selectType="SINGLE"   //标签的选择类型 有单选(可反选)、单选(不可反选)、多选、不可选四种类型
app:maxLines="3" // 设置最大显示行数,小于等于0则不限行数。
app:maxSelect="5" //标签的最大选择数量,只有多选的时候才有用,0为不限数量
app:minSelect="5" //标签的最少选择数量,只有多选的时候才有用,0为不限数量
app:minSelect="1" //标签的最少选择数量,只有多选的时候才有用,0为不限数量
app:isIndicator="true" /> //设置为指示器模式,不能手动改变标签的选中状态
```
这里有两个地方需要说明一下:
Expand Down Expand Up @@ -158,8 +158,8 @@ public void setSelectType(SelectType selectType);
public void setMaxSelect(int maxSelect);

//设置最少的选择数量,只有selectType等于MULTI时有效。
//注意:mMinSelect只限制用户手动点击取消选中时的效果。调用setSelects()、clearAllSelect()等方法改变标签的选中状态时,不受mMinSelect影响
public void setMinSelect(int mMinSelect);
//注意:minSelect只限制用户手动点击取消选中时的效果。调用setSelects()、clearAllSelect()等方法改变标签的选中状态时,不受minSelect影响
public void setMinSelect(int minSelect);

//设置为指示器模式,只能看,不能手动操作。这种模式下,用户不能通过手动点击改变标签的选中状态。
//但是仍然可以通过调用setSelects()、clearAllSelect()等方法改变标签的选中状态。
Expand Down
10 changes: 5 additions & 5 deletions labels/src/main/java/com/donkingliang/labels/LabelsView.java
Original file line number Diff line number Diff line change
Expand Up @@ -869,13 +869,13 @@ public int getMaxSelect() {

/**
* 设置最少的选择数量,只有selectType等于MULTI时有效。
* 注意:mMinSelect只限制用户手动点击取消选中时的效果
* 调用setSelects()、clearAllSelect()等方法改变标签的选中状态时,不受mMinSelect影响
* 注意:minSelect只限制用户手动点击取消选中时的效果
* 调用setSelects()、clearAllSelect()等方法改变标签的选中状态时,不受minSelect影响
*
* @param mMinSelect
* @param minSelect
*/
public void setMinSelect(int mMinSelect) {
this.mMinSelect = mMinSelect;
public void setMinSelect(int minSelect) {
this.mMinSelect = minSelect;
}

public int getMinSelect() {
Expand Down

0 comments on commit 0891e21

Please sign in to comment.