├── .gitignore ├── .travis.yml ├── README.md ├── blur-view-library ├── .classpath ├── .project ├── AndroidManifest.xml ├── build.gradle ├── libs │ ├── android-support-v4.jar │ ├── armeabi-v7a │ │ ├── libRSSupport.so │ │ └── librsjni.so │ ├── mips │ │ ├── libRSSupport.so │ │ └── librsjni.so │ ├── renderscript-v8.jar │ └── x86 │ │ ├── libRSSupport.so │ │ └── librsjni.so ├── proguard-project.txt ├── project.properties ├── res │ └── values │ │ └── attrs.xml └── src │ └── eu │ └── masconsult │ └── blurview │ └── library │ └── FrameLayoutWithBluredBackground.java ├── blur-view-sample ├── .classpath ├── .project ├── AndroidManifest.xml ├── build.gradle ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-nodpi │ │ └── sample_image.png │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ └── image_bg.jpg │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── eu │ └── masconsult │ └── blurview │ └── MainActivity.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/README.md -------------------------------------------------------------------------------- /blur-view-library/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/.classpath -------------------------------------------------------------------------------- /blur-view-library/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/.project -------------------------------------------------------------------------------- /blur-view-library/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/AndroidManifest.xml -------------------------------------------------------------------------------- /blur-view-library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/build.gradle -------------------------------------------------------------------------------- /blur-view-library/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/libs/android-support-v4.jar -------------------------------------------------------------------------------- /blur-view-library/libs/armeabi-v7a/libRSSupport.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/libs/armeabi-v7a/libRSSupport.so -------------------------------------------------------------------------------- /blur-view-library/libs/armeabi-v7a/librsjni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/libs/armeabi-v7a/librsjni.so -------------------------------------------------------------------------------- /blur-view-library/libs/mips/libRSSupport.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/libs/mips/libRSSupport.so -------------------------------------------------------------------------------- /blur-view-library/libs/mips/librsjni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/libs/mips/librsjni.so -------------------------------------------------------------------------------- /blur-view-library/libs/renderscript-v8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/libs/renderscript-v8.jar -------------------------------------------------------------------------------- /blur-view-library/libs/x86/libRSSupport.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/libs/x86/libRSSupport.so -------------------------------------------------------------------------------- /blur-view-library/libs/x86/librsjni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/libs/x86/librsjni.so -------------------------------------------------------------------------------- /blur-view-library/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/proguard-project.txt -------------------------------------------------------------------------------- /blur-view-library/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/project.properties -------------------------------------------------------------------------------- /blur-view-library/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/res/values/attrs.xml -------------------------------------------------------------------------------- /blur-view-library/src/eu/masconsult/blurview/library/FrameLayoutWithBluredBackground.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-library/src/eu/masconsult/blurview/library/FrameLayoutWithBluredBackground.java -------------------------------------------------------------------------------- /blur-view-sample/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/.classpath -------------------------------------------------------------------------------- /blur-view-sample/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/.project -------------------------------------------------------------------------------- /blur-view-sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/AndroidManifest.xml -------------------------------------------------------------------------------- /blur-view-sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/build.gradle -------------------------------------------------------------------------------- /blur-view-sample/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/ic_launcher-web.png -------------------------------------------------------------------------------- /blur-view-sample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /blur-view-sample/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/proguard-project.txt -------------------------------------------------------------------------------- /blur-view-sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/project.properties -------------------------------------------------------------------------------- /blur-view-sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /blur-view-sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /blur-view-sample/res/drawable-nodpi/sample_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/drawable-nodpi/sample_image.png -------------------------------------------------------------------------------- /blur-view-sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /blur-view-sample/res/drawable-xhdpi/image_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/drawable-xhdpi/image_bg.jpg -------------------------------------------------------------------------------- /blur-view-sample/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /blur-view-sample/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/layout/activity_main.xml -------------------------------------------------------------------------------- /blur-view-sample/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/menu/main.xml -------------------------------------------------------------------------------- /blur-view-sample/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /blur-view-sample/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /blur-view-sample/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/values-v11/styles.xml -------------------------------------------------------------------------------- /blur-view-sample/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/values-v14/styles.xml -------------------------------------------------------------------------------- /blur-view-sample/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/values/dimens.xml -------------------------------------------------------------------------------- /blur-view-sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/values/strings.xml -------------------------------------------------------------------------------- /blur-view-sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/res/values/styles.xml -------------------------------------------------------------------------------- /blur-view-sample/src/eu/masconsult/blurview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/blur-view-sample/src/eu/masconsult/blurview/MainActivity.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironsteel/blur-view-library/HEAD/settings.gradle --------------------------------------------------------------------------------