Skip to content

Commit

Permalink
release v1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
whilu committed Jun 1, 2017
1 parent 073800f commit ca1addf
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 3 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.1.3'
compile 'co.lujun:androidtagview:1.1.4'
}
```

Expand Down Expand Up @@ -84,6 +84,7 @@ Now, you have successfully created some TagViews. The following will show some m
| tag_cross_line_width | dimension | The cross line width(default 1dp)
| tag_cross_area_padding | dimension | The padding of the cross area(default 10dp)
| tag_support_letters_rlt | boolean | Whether to support 'letters show with RTL(eg: Android -> diordnA)' style(default false)
| tag_background | reference | TagView background resource(default none background)

**You can set these attributes in layout file, or use setters(each attribute has get and set method) to set them.**

Expand Down Expand Up @@ -208,6 +209,9 @@ mTagcontainerLayout.setTags(tags, colors);

## Change logs

### 1.1.4(2017-6-1)
- Add attribute for TagView background.

### 1.1.3(2017-5-17)
- Add ```getTagView(int position)``` method to get TagView in specified position.

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 25
versionCode 113
versionName "1.1.3"
versionCode 114
versionName "1.1.4"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2015 lujun
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package co.lujun.androidtagview;

import android.graphics.Color;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2015 lujun
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package co.lujun.androidtagview;

import android.content.Context;
Expand Down
16 changes: 16 additions & 0 deletions androidtagview/src/main/java/co/lujun/androidtagview/TagView.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2015 lujun
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package co.lujun.androidtagview;

import android.animation.ValueAnimator;
Expand Down
16 changes: 16 additions & 0 deletions androidtagview/src/main/java/co/lujun/androidtagview/Utils.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2015 lujun
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package co.lujun.androidtagview;

import android.content.Context;
Expand Down

0 comments on commit ca1addf

Please sign in to comment.