# ContinuousScrollableImageView **Repository Path**: HarmonyOS-tpc/ContinuousScrollableImageView ## Basic Information - **Project Name**: ContinuousScrollableImageView - **Description**: Library for animating images with continuous scrolling effects - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2021-04-01 - **Last Updated**: 2024-11-25 ## Categories & Tags **Categories**: harmony **Tags**: None ## README # ContinuousScrollableImageView Library for animating images with continuous scrolling effects Simple openharmonyOS view to display images with continuous scrolling effects efficiently. You can set image source, scaleType, duration and direction. Example usages can be found in sample project. ## ScreenShot ### JAVA USAGE #### Classic Way ``` java image = new ContinuousScrollableImageView(this); image.setResourceId(ResourceTable.Media_cloud); image.setDirection(ContinuousScrollableImageView.LEFT); image.setLayoutConfig(new ComponentContainer.LayoutConfig(ComponentContainer.LayoutConfig.MATCH_PARENT, ComponentContainer.LayoutConfig.MATCH_CONTENT)); image.setScaleType(ContinuousScrollableImageView.ZOOM_CENTER); image.setDuration(3000); rootLayout.addComponent(image); ``` #### Builder Way ``` java image1 = new ContinuousScrollableImageView.Builder(MainActivity.this) .setResourceId(ResourceTable.Media_plane) .setDirection(ContinuousScrollableImageView.RIGHT) .setDuration(3000) .setScaleType(ContinuousScrollableImageView.INSIDE) .build(); image1.setLayoutConfig(new ComponentContainer.LayoutConfig(ComponentContainer.LayoutConfig.MATCH_PARENT, ComponentContainer.LayoutConfig.MATCH_CONTENT)); rootLayout.addComponent(image1); ``` ### XML USAGE ``` xml ``` ## entry运行要求 ``` 通过DevEco studio,并下载openharmonySDK 将项目中的build.gradle文件中dependencies→classpath版本改为对应的版本(即您当前IDE新建项目中所用的版本) ``` ## 集成 ``` allprojects{ repositories{ mavenCentral() } } implementation 'io.openharmony.tpc.thirdlib:ContinuousScrollableImageView:1.0.3' ``` # License ``` Copyright 2017 Cüneyt Çarıkçi. 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. ```