├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── README.md ├── boxloader2 ├── .gitignore ├── build.gradle ├── gradle.properties ├── maven-push.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── nipunbirla │ │ └── boxloader │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── nipunbirla │ │ │ └── boxloader │ │ │ └── BoxLoaderView.java │ └── res │ │ ├── anim │ │ └── blox_loader_animation.xml │ │ ├── drawable │ │ └── shape_corner.xml │ │ ├── layout │ │ └── layout_box.xml │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── nipunbirla │ └── boxloader │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── preview.gif ├── sampleproject ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── nipunbirla │ │ └── boxloader │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── nipunbirla │ │ │ └── boxloader │ │ │ └── MainActivity.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── nipunbirla │ └── boxloader │ └── ExampleUnitTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/README.md -------------------------------------------------------------------------------- /boxloader2/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /boxloader2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/build.gradle -------------------------------------------------------------------------------- /boxloader2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/gradle.properties -------------------------------------------------------------------------------- /boxloader2/maven-push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/maven-push.gradle -------------------------------------------------------------------------------- /boxloader2/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/proguard-rules.pro -------------------------------------------------------------------------------- /boxloader2/src/androidTest/java/com/nipunbirla/boxloader/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/src/androidTest/java/com/nipunbirla/boxloader/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /boxloader2/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /boxloader2/src/main/java/com/nipunbirla/boxloader/BoxLoaderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/src/main/java/com/nipunbirla/boxloader/BoxLoaderView.java -------------------------------------------------------------------------------- /boxloader2/src/main/res/anim/blox_loader_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/src/main/res/anim/blox_loader_animation.xml -------------------------------------------------------------------------------- /boxloader2/src/main/res/drawable/shape_corner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/src/main/res/drawable/shape_corner.xml -------------------------------------------------------------------------------- /boxloader2/src/main/res/layout/layout_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/src/main/res/layout/layout_box.xml -------------------------------------------------------------------------------- /boxloader2/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /boxloader2/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /boxloader2/src/test/java/com/nipunbirla/boxloader/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/boxloader2/src/test/java/com/nipunbirla/boxloader/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/preview.gif -------------------------------------------------------------------------------- /sampleproject/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sampleproject/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/build.gradle -------------------------------------------------------------------------------- /sampleproject/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/proguard-rules.pro -------------------------------------------------------------------------------- /sampleproject/src/androidTest/java/com/nipunbirla/boxloader/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/androidTest/java/com/nipunbirla/boxloader/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /sampleproject/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sampleproject/src/main/java/com/nipunbirla/boxloader/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/java/com/nipunbirla/boxloader/MainActivity.java -------------------------------------------------------------------------------- /sampleproject/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sampleproject/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleproject/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleproject/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleproject/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleproject/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleproject/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /sampleproject/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sampleproject/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sampleproject/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sampleproject/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sampleproject/src/test/java/com/nipunbirla/boxloader/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nipun-birla/BoxLoaderView/HEAD/sampleproject/src/test/java/com/nipunbirla/boxloader/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':sampleproject', ':boxloader2' 2 | --------------------------------------------------------------------------------