From 9a5ca00edbbcf60de58ff96115e8cc05a5014130 Mon Sep 17 00:00:00 2001 From: zxd191990 <1713664308@qq.com> Date: Wed, 21 Apr 2021 11:34:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9coperight?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ README.md | 4 ++-- .../java/com/hos/expandabletextview/MainAbility.java | 3 +-- .../java/com/hos/expandabletextview/MyApplication.java | 3 +-- .../hos/expandabletextview/adapter/ListAdapter.java | 3 +-- .../expandabletextview/adapter/MainPagerAdapter.java | 3 +-- .../com/hos/expandabletextview/adapter/ViewHolder.java | 3 +-- .../hos/expandabletextview/slice/MainAbilitySlice.java | 3 +-- .../java/com/hos/expandabletextview/utils/MyToast.java | 3 +-- .../hos/expandabletextview/utils/ViewCreateHelper.java | 3 +-- .../android/expandabletextview/TypedAttrUtils.java | 3 +-- 11 files changed, 21 insertions(+), 20 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d6244d8 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +## 0.0.1-SNAPSHOT +* refactor: For module library Android-to-OpenHarmony +## Version 0.1.3 +* Bug fix for #7 +## Version 0.1.2 +* Bug fixe for #4 +## Version 0.1.1 +* Bug fixes for the following two issues:#1 #2 +## v0.1.0 +* Added requirements to README diff --git a/README.md b/README.md index 7feba7a..26b54ee 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # ExpandableTextView -**本项目基于开源项目ExpandableTextView 进行OpenHarmony的移植和开发,可以通过项目标签以及github地址()追踪到原安卓项目版本** +**本项目基于开源项目ExpandableTextView 进行openharmony的移植和开发,可以通过项目标签以及github地址()追踪到原安卓项目版本** #### 项目介绍 - 项目名称:可以展开/折叠的Text -- 所属系列:OpenHarmony的第三方组件适配移植 +- 所属系列:openharmony的第三方组件适配移植 - 功能:实现可以展开/折叠的Text控件 - 项目移植状态:主功能完成 - 调用差异:无 diff --git a/entry/src/main/java/com/hos/expandabletextview/MainAbility.java b/entry/src/main/java/com/hos/expandabletextview/MainAbility.java index 8fdf46f..add3804 100644 --- a/entry/src/main/java/com/hos/expandabletextview/MainAbility.java +++ b/entry/src/main/java/com/hos/expandabletextview/MainAbility.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 The Chinese Software International Co., Ltd. + * Copyright (C) 2021 Huawei Device Co., Ltd. * 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 @@ -11,7 +11,6 @@ * 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 com.hos.expandabletextview; diff --git a/entry/src/main/java/com/hos/expandabletextview/MyApplication.java b/entry/src/main/java/com/hos/expandabletextview/MyApplication.java index 27ff969..0669feb 100644 --- a/entry/src/main/java/com/hos/expandabletextview/MyApplication.java +++ b/entry/src/main/java/com/hos/expandabletextview/MyApplication.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 The Chinese Software International Co., Ltd. + * Copyright (C) 2021 Huawei Device Co., Ltd. * 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 @@ -11,7 +11,6 @@ * 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 com.hos.expandabletextview; diff --git a/entry/src/main/java/com/hos/expandabletextview/adapter/ListAdapter.java b/entry/src/main/java/com/hos/expandabletextview/adapter/ListAdapter.java index 1e4998f..83c231e 100644 --- a/entry/src/main/java/com/hos/expandabletextview/adapter/ListAdapter.java +++ b/entry/src/main/java/com/hos/expandabletextview/adapter/ListAdapter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 The Chinese Software International Co., Ltd. + * Copyright (C) 2021 Huawei Device Co., Ltd. * 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 @@ -11,7 +11,6 @@ * 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 com.hos.expandabletextview.adapter; diff --git a/entry/src/main/java/com/hos/expandabletextview/adapter/MainPagerAdapter.java b/entry/src/main/java/com/hos/expandabletextview/adapter/MainPagerAdapter.java index 1cd56e0..653ba28 100644 --- a/entry/src/main/java/com/hos/expandabletextview/adapter/MainPagerAdapter.java +++ b/entry/src/main/java/com/hos/expandabletextview/adapter/MainPagerAdapter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 The Chinese Software International Co., Ltd. + * Copyright (C) 2021 Huawei Device Co., Ltd. * 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 @@ -11,7 +11,6 @@ * 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 com.hos.expandabletextview.adapter; diff --git a/entry/src/main/java/com/hos/expandabletextview/adapter/ViewHolder.java b/entry/src/main/java/com/hos/expandabletextview/adapter/ViewHolder.java index 83d55a8..c2c08f6 100644 --- a/entry/src/main/java/com/hos/expandabletextview/adapter/ViewHolder.java +++ b/entry/src/main/java/com/hos/expandabletextview/adapter/ViewHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 The Chinese Software International Co., Ltd. + * Copyright (C) 2021 Huawei Device Co., Ltd. * 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 @@ -11,7 +11,6 @@ * 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 com.hos.expandabletextview.adapter; diff --git a/entry/src/main/java/com/hos/expandabletextview/slice/MainAbilitySlice.java b/entry/src/main/java/com/hos/expandabletextview/slice/MainAbilitySlice.java index 25ced17..86f6c89 100644 --- a/entry/src/main/java/com/hos/expandabletextview/slice/MainAbilitySlice.java +++ b/entry/src/main/java/com/hos/expandabletextview/slice/MainAbilitySlice.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 The Chinese Software International Co., Ltd. + * Copyright (C) 2021 Huawei Device Co., Ltd. * 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 @@ -11,7 +11,6 @@ * 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 com.hos.expandabletextview.slice; diff --git a/entry/src/main/java/com/hos/expandabletextview/utils/MyToast.java b/entry/src/main/java/com/hos/expandabletextview/utils/MyToast.java index 3f41a5b..7008bd7 100644 --- a/entry/src/main/java/com/hos/expandabletextview/utils/MyToast.java +++ b/entry/src/main/java/com/hos/expandabletextview/utils/MyToast.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 The Chinese Software International Co., Ltd. + * Copyright (C) 2021 Huawei Device Co., Ltd. * 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 @@ -11,7 +11,6 @@ * 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 com.hos.expandabletextview.utils; diff --git a/entry/src/main/java/com/hos/expandabletextview/utils/ViewCreateHelper.java b/entry/src/main/java/com/hos/expandabletextview/utils/ViewCreateHelper.java index 74e27e6..a421160 100644 --- a/entry/src/main/java/com/hos/expandabletextview/utils/ViewCreateHelper.java +++ b/entry/src/main/java/com/hos/expandabletextview/utils/ViewCreateHelper.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 The Chinese Software International Co., Ltd. + * Copyright (C) 2021 Huawei Device Co., Ltd. * 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 @@ -11,7 +11,6 @@ * 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 com.hos.expandabletextview.utils; diff --git a/library/src/main/java/com/ms/square/android/expandabletextview/TypedAttrUtils.java b/library/src/main/java/com/ms/square/android/expandabletextview/TypedAttrUtils.java index ca585e9..e7a03a9 100644 --- a/library/src/main/java/com/ms/square/android/expandabletextview/TypedAttrUtils.java +++ b/library/src/main/java/com/ms/square/android/expandabletextview/TypedAttrUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 The Chinese Software International Co., Ltd. + * Copyright (C) 2021 Huawei Device Co., Ltd. * 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 @@ -11,7 +11,6 @@ * 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 com.ms.square.android.expandabletextview; -- Gitee