2 Star 4 Fork 2

CHINASOFT4_OHOS / ReadMoreTextView

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.md 2.39 KB
一键复制 编辑 原始数据 按行查看 历史
gaojianming108 提交于 2021-09-23 15:45 . 修改readme,changelog

ReadMoreTextView

项目介绍

  • 项目名称: ReadMoreTextView
  • 所属系列: openharmony的第三方组件适配移植
  • 功能: 带有修剪文本的自定义文本视图
  • 项目移植状态: 给特定文字设置点击事件功能未实现
  • 调用差异: 无
  • 开发版本: sdk6,DevEco Studio 2.2 Beta2
  • 基线版本: Release 2.1.0

效果演示

安装教程

1.在项目根目录下的build.gradle文件中,

allprojects {
   repositories {
       maven {
           url 'https://s01.oss.sonatype.org/content/repositories/releases/'
       }
   }
}

2.在entry模块的build.gradle文件中,

dependencies {
   implementation('com.gitee.chinasoft_ohos:ReadMoreTextView:1.0.0')
   ......  
}

在sdk6,DevEco Studio 2.2 Beta2下项目可直接运行 如无法运行,删除项目.gradle,.idea,build,gradle,build.gradle文件, 并依据自己的版本创建新项目,将新项目的对应文件复制到根目录下

使用说明

  1. 从XML布局文件创建:
 xmlns:app="http://schemas.huawei.com/hap/res-auto"
  <com.borjabravo.readmoretextview.ReadMoreTextView
        ohos:id="$+id:text1"
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:text_size="12vp"
        app:color_less="#FF4081"
        app:color_more="#FF4081"
        app:text_less="$string:show_less"
        app:text_more="$string:show_all_content"
        />

使用方法:

  ReadMoreTextView text1 = (ReadMoreTextView) findComponentById(ResourceTable.Id_text1);
  text1.setContent(getString(ResourceTable.String_lorem_ipsum));

测试信息

CodeCheck代码测试无异常

CloudTest代码测试无异常

病毒安全检测通过

当前版本demo功能与原组件基本无差异

版本迭代

  • 1.0.0

版权和许可信息

    Copyright 2016 Borja Bravo

    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.
Java
1
https://gitee.com/chinasoft4_ohos/ReadMoreTextView.git
git@gitee.com:chinasoft4_ohos/ReadMoreTextView.git
chinasoft4_ohos
ReadMoreTextView
ReadMoreTextView
master

搜索帮助