• Stars
    star
    473
  • Rank 92,832 (Top 2 %)
  • Language
    Java
  • License
    GNU Lesser Genera...
  • Created over 7 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

显示等待加载状态的View

WaitView

显示等待加载状态的View

Introduce

  • 第二张图为等待加载的状态

默认状态 . 等待加载的状态

Features

  • 简单高效 一行代码搞定所有控件的状态切换、恢复
  • 兼容性强 支持所有系统控件、自定义控件
  • 可定制性 自定义渲染规则,按需配置

Usage

Step 1. Add the JitPack repository to your build file

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Step 2. Add the dependency

compile 'com.github.ImKarl:WaitView:{latestVersion}'

Sample

  • 渲染
单个View
WaitViewController.from(mRootView).render();

所有子View
WaitViewController.from(mRootView).renderChilds();
  • 移除
单个View
WaitViewController.from(mRootView).remove();

所有子View
WaitViewController.from(mRootView).removeChilds();
  • 额外的可配置项
WaitViewController controller = WaitViewController.from(mRootView);

颜色:@ColorInt
controller.color(color);

透明度:@IntRange(from=0, to=255)
controller.alpha(alpha);

圆角半径:@Dimension
controller.radius(radius);

绘制区域:如 new Rect(0, 0, view.getWidth(), view.getHeight())
controller.drawRect(rect);
controller.drawRect(width, height);

过滤器:如 new SimpleOnWaitViewFilter()
controller.filter(filter);
  • 更详细的案例

请查看 sample

More Repositories

1

CharacterPickerView

可实现三级联动的选择器,高仿iOS的滚轮控件,字体大小自适应
Java
739
star
2

QuickAndroid

[suspend] 一个快速、完善的Android开发框架整合实践
Java
63
star
3

JianshuApp

仿简书APP
Java
51
star
4

SupportSwipeLoadmore

支持滑动加载更多
Java
29
star
5

maupassant-jekyll

An Jekyll theme called 'Mewpassant'
CSS
20
star
6

PictureBeautify

图形编辑开源控件,支持自定义贴图,支持贴文字,支持图片滤镜、旋转,以及图片剪裁等操作
Java
18
star
7

BaiduPan

基于swing开发的百度网盘客户端
Kotlin
12
star
8

ccshop

C2C商城,ccshop参考jshop架构,使用spring mvc+freemarker。ccshop现在还不完善,仅供参考。欢迎学习交流~
Java
11
star
9

UrlBuilder

链式风格的URL生成器,简单、直观、易用、安全。
Java
9
star
10

SwipeRefreshExpandLayout

拓展自SwipeRefreshLayout. 支持自定义HeaderView和FooterView,支持下拉刷新和上拉加载更多
Java
5
star
11

AnyNote

点子笔记,随时随地记录你的任何点滴创意
Java
5
star
12

scale

自定义刻度尺
Java
4
star
13

WeChatAPI

微信客户端的API,可用于微信聊天机器人等功能开发
Kotlin
4
star
14

MultipleTypeAdapter

一个方便管理多种视图类型的Adapter
Java
2
star
15

ProxyRequest

用Kotlin实现的简易HTTP代理
Kotlin
2
star
16

DotIndicator

圆点指示器
Java
2
star
17

LinearTimer

对齐计时管理器(整秒对齐)
Java
2
star
18

NetworkForSwift

网络流量监听器-Swift版本
Swift
2
star
19

nutz-demo

基于nutzboot+gradle+kotlin的demo工程
Kotlin
1
star
20

java-cef

Java
1
star