6 Star 8 Fork 2

HarmonyOS-TPC/BGARefreshLayout-ohos

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

BGARefreshLayout-ohos

Developers can use BGARefreshLayout-ohos to implement multiple pull-down refresh effects, pull-ups to load more.

BGARefreshLayout-ohos includes :

* Provides Swipe Up and Swipe Down capabilities.
* Support Swipe Down show Loader on Top and call back accrue in used Slice
 * Support Swipe Up and Show PopUp Loader and call back accrue in Used Slice

Note:- Put weight 1 in sub component Like :- ohos:weight="1"

Usage Instructions

  1. Configure BGARefreshLayout in Ability or AbilitySlice

    private BGARefreshLayout bgaRefreshLayout; bgaRefreshLayout = (BGARefreshLayout) rootContainer.findComponentById(ResourceTable.Id_mainLayout); bgaRefreshLayout.setDelegate(this); BGAStickinessRefreshViewHolder stickinessRefreshViewHolder = new BGAStickinessRefreshViewHolder(this, false); bgaRefreshLayout.setRefreshViewHolder(stickinessRefreshViewHolder); bgarefreshLayout.setIsShowLoadingMoreView(true); bgarefreshLayout.setPullDownRefreshEnable(true); stickinessRefreshViewHolder.setPullDownRefreshText("Custom Text...."); stickinessRefreshViewHolder.setLoadingMoreText("Custom Text...."); stickinessRefreshViewHolder.setUltimateColor(ResourceTable.Color_util__color); stickinessRefreshViewHolder.setLoadMoreBackgroundColorRes(ResourceTable.Color_load_more); stickinessRefreshViewHolder.setRefreshViewBackgroundColorRes(ResourceTable.Color_refresh_color); stickinessRefreshViewHolder.setOriginalImage(ResourceTable.Media_custom_mooc_icon); stickinessRefreshViewHolder.setLoaderTextColor(ResourceTable.Color_text_color); stickinessRefreshViewHolder.setPullUpDilogueVisible(false); stickinessRefreshViewHolder.setLoaderTextSize(50); stickinessRefreshViewHolder.setProgressSize(90);

User perform Action swipe-Up and Load-More retun callbackmethod

     @Override
      public void onBGARefreshLayoutBeginRefreshing(BGARefreshLayout refreshLayout) {
                    mTextView.setText(counter + " Called Swipe");
                    counter++;
      }

      @Override
      public boolean onBGARefreshLayoutBeginLoadingMore(BGARefreshLayout refreshLayout) {
                    mTextView.setText(counter + " Called Loading");
                    counter++;
                    return false;
      }

2 . For the direct child control of BGARefreshLayout, please use android:layout_weight="1"

	<?xml version="1.0" encoding="utf-8"?>
      <cn.bingoogolapple.refreshlayout.BgarefreshLayout
          xmlns:ohos="http://schemas.huawei.com/res/ohos"
          ohos:id="$+id:bgaRefreshLayout"
          ohos:height="match_parent"
          ohos:width="match_parent"
          ohos:orientation="vertical">

          <ListContainer
              ohos:id="$+id:mList"
              ohos:height="match_parent"
              ohos:width="match_parent"
              ohos:weight="1"
              />

      </cn.bingoogolapple.refreshlayout.BgarefreshLayout>

Installation tutorial

1.Using the library.har, make sure to add library.har file in the entry/libs folder. Modify entry build.gradle as below :

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

2.For using library module in sample app, Add the dependencies in entry/build.gradle as below Modify entry build.gradle as below :

       dependencies {
           implementation project(path: ':library')
       }

3.For using BGARefreshLayout-ohos from a remote repository in separate application, add the below dependencies : Modify entry build.gradle as below :

	dependencies {
	    implementation 'io.openharmony.tpc.thirdlib:BGARefreshLayout-ohos:1.0.0'
	}

License

Copyright 2015 bingoogolapple

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.
# BGARefreshLayout-ohos Developers can use BGARefreshLayout-ohos to implement multiple pull-down refresh effects, pull-ups to load more. # BGARefreshLayout-ohos includes : * Provides Swipe Up and Swipe Down capabilities. * Support Swipe Down show Loader on Top and call back accrue in used Slice * Support Swipe Up and Show PopUp Loader and call back accrue in Used Slice Note:- Put weight 1 in sub component Like :- ohos:weight="1" # Usage Instructions 1. Configure BGARefreshLayout in Ability or AbilitySlice private BGARefreshLayout bgaRefreshLayout; bgaRefreshLayout = (BGARefreshLayout) rootContainer.findComponentById(ResourceTable.Id_mainLayout); bgaRefreshLayout.setDelegate(this); BGAStickinessRefreshViewHolder stickinessRefreshViewHolder = new BGAStickinessRefreshViewHolder(this, false); bgaRefreshLayout.setRefreshViewHolder(stickinessRefreshViewHolder); bgarefreshLayout.setIsShowLoadingMoreView(true); bgarefreshLayout.setPullDownRefreshEnable(true); stickinessRefreshViewHolder.setPullDownRefreshText("Custom Text...."); stickinessRefreshViewHolder.setLoadingMoreText("Custom Text...."); stickinessRefreshViewHolder.setUltimateColor(ResourceTable.Color_util__color); stickinessRefreshViewHolder.setLoadMoreBackgroundColorRes(ResourceTable.Color_load_more); stickinessRefreshViewHolder.setRefreshViewBackgroundColorRes(ResourceTable.Color_refresh_color); stickinessRefreshViewHolder.setOriginalImage(ResourceTable.Media_custom_mooc_icon); stickinessRefreshViewHolder.setLoaderTextColor(ResourceTable.Color_text_color); stickinessRefreshViewHolder.setPullUpDilogueVisible(false); stickinessRefreshViewHolder.setLoaderTextSize(50); stickinessRefreshViewHolder.setProgressSize(90); User perform Action swipe-Up and Load-More retun callbackmethod @Override public void onBGARefreshLayoutBeginRefreshing(BGARefreshLayout refreshLayout) { mTextView.setText(counter + " Called Swipe"); counter++; } @Override public boolean onBGARefreshLayoutBeginLoadingMore(BGARefreshLayout refreshLayout) { mTextView.setText(counter + " Called Loading"); counter++; return false; } 2 . For the direct child control of BGARefreshLayout, please use android:layout_weight="1" <?xml version="1.0" encoding="utf-8"?> <cn.bingoogolapple.refreshlayout.BgarefreshLayout xmlns:ohos="http://schemas.huawei.com/res/ohos" ohos:id="$+id:bgaRefreshLayout" ohos:height="match_parent" ohos:width="match_parent" ohos:orientation="vertical"> <ListContainer ohos:id="$+id:mList" ohos:height="match_parent" ohos:width="match_parent" ohos:weight="1" /> </cn.bingoogolapple.refreshlayout.BgarefreshLayout> # Installation tutorial 1.Using the library.har, make sure to add library.har file in the entry/libs folder. Modify entry build.gradle as below : dependencies { implementation fileTree(dir: 'libs', include: [' *.jar', ' *.har']) } 2.For using library module in sample app, Add the dependencies in entry/build.gradle as below Modify entry build.gradle as below : dependencies { implementation project(path: ':library') } 3.For using BGARefreshLayout-ohos from a remote repository in separate application, add the below dependencies : Modify entry build.gradle as below : dependencies { implementation 'io.openharmony.tpc.thirdlib:BGARefreshLayout-ohos:1.0.0' } # License Copyright 2015 bingoogolapple 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.

简介

Developers can use BGARefreshLayout-ohos to implement multiple pull-down refresh effects, pull-ups to load more. 展开 收起
Java
Apache-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/HarmonyOS-tpc/BGARefreshLayout-ohos.git
git@gitee.com:HarmonyOS-tpc/BGARefreshLayout-ohos.git
HarmonyOS-tpc
BGARefreshLayout-ohos
BGARefreshLayout-ohos
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891