Skip to content

Commit

Permalink
release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
whilu committed Apr 3, 2016
1 parent 4989abf commit 8aeeb16
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add below dependency in your **build.gradle** file.

```groovy
dependencies {
compile 'co.lujun:androidtagview:1.0.2'
compile 'co.lujun:androidtagview:1.0.3'
}
```

Expand Down Expand Up @@ -178,6 +178,10 @@ mTagContainerLayout.removeAllTags();
```

## Change logs
###1.0.3(2016-4-3)
- add ```getTags()``` method to get the list for all tags
- fixed bugs in ListView/RecyclerView

###1.0.2(2016-1-18)
- support [gravity](#gravity) for ```TagContainerLayout```
- support set typeface
Expand Down
4 changes: 2 additions & 2 deletions androidtagview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 9
targetSdkVersion 23
versionCode 102
versionName "1.0.2"
versionCode 103
versionName "1.0.3"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
public class ColorFactory {

/**
* ============= -->border color
* background color<---||- Text --||-->text color
* =============
* ============= --border color
* background color---||- Text --||--text color
* =============
*/

public static final String BG_COLOR_ALPHA = "33";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ public void setSensitivity(float sensitivity) {
}

/**
* Set the TagView text max length(must >=3).
* Set the TagView text max length(must greater or equal to 3).
* @param maxLength
*/
public void setTagMaxLength(int maxLength){
Expand Down Expand Up @@ -949,7 +949,7 @@ public int getTagTextColor() {
}

/**
* Set tag text direction, support:View.TEXT_DIRECTION_RTL & View.TEXT_DIRECTION_LTR,
* Set tag text direction, support:View.TEXT_DIRECTION_RTL and View.TEXT_DIRECTION_LTR,
* default View.TEXT_DIRECTION_LTR
* @param textDirection
*/
Expand Down

0 comments on commit 8aeeb16

Please sign in to comment.