# LoadingViews **Repository Path**: baijuncheng-open-source/loading-views ## Basic Information - **Project Name**: LoadingViews - **Description**: No description available - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-11-09 - **Last Updated**: 2021-09-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 介绍 LoadingViews是一个等待加载过程动画效果控件集合 Sample实现各个控件简单的使用方法,供使用者参考,查看控件效果 * CollisionLoadingView * SwapLoadingView * WhorlLoadingView * MaterialLoadingView * GearLoadingView * LevelLoadingView * GuardLoadingView * BalloonLoadingView * DanceLoadingView * FishLoadingView ![输入图片说明](https://images.gitee.com/uploads/images/2020/1115/191347_6fc3dfe7_8283665.png "demos.png") ## 使用说明 调用方法如下: DirectionalLayout gearViewLayout = new DirectionalLayout(this); gearViewLayout.setLayoutConfig(columnConfig); ShapeElement gearElement = new ShapeElement(); gearElement.setRgbColor(new RgbColor(0xffaabbcc)); gearViewLayout.setBackground(gearElement); GearLoadingView gearLoadingView = new GearLoadingView(this,Color.WHITE); gearLoadingView.setWidth(300); gearLoadingView.setHeight(300); gearViewLayout.addComponent(gearLoadingView);