From 409d1ba237883e46e55395f2a207b848835f51f7 Mon Sep 17 00:00:00 2001 From: chenjianpeng Date: Fri, 30 Jul 2021 18:08:55 +0800 Subject: [PATCH 1/2] =?UTF-8?q?1,=E6=9B=B4=E6=96=B0readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 43a492c..e841f14 100644 --- a/README.md +++ b/README.md @@ -170,4 +170,5 @@ 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. + ``` \ No newline at end of file -- Gitee From f258f3e5cf0a5fd706353c2c95e6026f328d0941 Mon Sep 17 00:00:00 2001 From: chenjianpeng Date: Sat, 31 Jul 2021 09:43:43 +0800 Subject: [PATCH 2/2] =?UTF-8?q?1,=E6=9B=B4=E6=96=B0codecheck?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/lcodecore/tkrefreshlayout/LoadingMoreFooter.java | 1 - .../com/lcodecore/tkrefreshlayout/utils/AnimatorValueUtil.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/library/src/main/java/com/lcodecore/tkrefreshlayout/LoadingMoreFooter.java b/library/src/main/java/com/lcodecore/tkrefreshlayout/LoadingMoreFooter.java index 062c063..a2f3e3b 100644 --- a/library/src/main/java/com/lcodecore/tkrefreshlayout/LoadingMoreFooter.java +++ b/library/src/main/java/com/lcodecore/tkrefreshlayout/LoadingMoreFooter.java @@ -93,7 +93,6 @@ public class LoadingMoreFooter extends DirectionalLayout implements BaseRefreshH footer_bottom.setVisibility(VISIBLE); circularZoom.startAnim(300); circularZoom.setViewColor(Color.rgb(240, 84, 72)); - circularZoom. invalidate(); } diff --git a/library/src/main/java/com/lcodecore/tkrefreshlayout/utils/AnimatorValueUtil.java b/library/src/main/java/com/lcodecore/tkrefreshlayout/utils/AnimatorValueUtil.java index 44081e5..b24ef70 100644 --- a/library/src/main/java/com/lcodecore/tkrefreshlayout/utils/AnimatorValueUtil.java +++ b/library/src/main/java/com/lcodecore/tkrefreshlayout/utils/AnimatorValueUtil.java @@ -40,7 +40,7 @@ public class AnimatorValueUtil { * @param tempValues 说明 */ public void ofFloat(float[] tempValues) { - this.values = tempValues; + this.values = tempValues.clone(); rate = new float[this.values.length - 1][RATE_SIZE]; -- Gitee