克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

ValueCounter

自定义组件功能

实现组件计数器功能

导入依赖

方式一: 通过library生成har包,添加har包到libs文件夹内 在entry的gradle内添加如下代码

    implementation fileTree(dir: 'libs', include: ['*.jar', '*.har'])

方式二:

      allprojects{
           repositories{
               mavenCentral()
           }
      }
      implementation 'io.openharmony.tpc.thirdlib:valueCounter:1.0.4'

Step2

    <com.mohammedalaa.valuecounterlib.ValueCounterView
            ohos:id="$+id:valueCounter"
            ohos:cornerRadius="15vp"
            ohos:defaultValue="5"
            ohos:maxValue="10"
            ohos:minValue="1"
            ohos:outlineColor="$color:colorAccent"
            ohos:stepValue="1"
            ohos:strokeWidth="2vp"
            ohos:valueColor="$color:back"
            ohos:valueTextSize="12fp"
            ohos:width="match_content"
            ohos:height="match_content"
            ohos:center_in_parent="true"
            />

Step3

Reference the View in Java code.

    valueCounterView = (ValueCounterView) findComponentById(ResourceTable.Id_valueCounter);

getValue

    valueCounterView.getValue();

示例截图

image

entry运行要求

通过DevEco studio,并下载SDK 将项目中的build.gradle文件中dependencies→classpath版本改为对应的版本(即你的IDE新建项目中所用的版本)

Copyright 2019 Mohammmed Alaa 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.

简介

实现组件计数器功能 展开 收起
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化