├── settings.gradle ├── imgs ├── 1.gif ├── 2.png └── blurring.apk ├── sample ├── res │ ├── values │ │ └── strings.xml │ ├── drawable-xxhdpi │ │ ├── p0.jpg │ │ ├── p1.jpg │ │ ├── p2.jpg │ │ ├── p3.jpg │ │ ├── p4.jpg │ │ ├── p5.jpg │ │ ├── p6.jpg │ │ ├── p7.jpg │ │ ├── p8.jpg │ │ └── p9.jpg │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ └── layout │ │ ├── list_item.xml │ │ ├── list_item_blur.xml │ │ ├── popup_layout.xml │ │ └── activity_main.xml ├── src │ └── com │ │ └── github │ │ └── mmin18 │ │ └── realtimeblurview │ │ └── sample │ │ ├── ListActivity.java │ │ ├── MyListAdapter.java │ │ ├── CustomShapeBlurView.java │ │ └── MainActivity.java ├── AndroidManifest.xml └── build.gradle ├── library ├── res │ └── values │ │ └── attrs.xml ├── AndroidManifest.xml ├── build.gradle └── src │ └── com │ └── github │ └── mmin18 │ └── widget │ └── RealtimeBlurView.java ├── LICENSE ├── .gitignore └── README.md /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':library', ':sample' 2 | -------------------------------------------------------------------------------- /imgs/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/imgs/1.gif -------------------------------------------------------------------------------- /imgs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/imgs/2.png -------------------------------------------------------------------------------- /imgs/blurring.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/imgs/blurring.apk -------------------------------------------------------------------------------- /sample/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Realtime Blurring Overlay 3 | 4 | -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/p0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/drawable-xxhdpi/p0.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/drawable-xxhdpi/p1.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/drawable-xxhdpi/p2.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/drawable-xxhdpi/p3.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/drawable-xxhdpi/p4.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/drawable-xxhdpi/p5.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/p6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/drawable-xxhdpi/p6.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/p7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/drawable-xxhdpi/p7.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/p8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/drawable-xxhdpi/p8.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xxhdpi/p9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/drawable-xxhdpi/p9.jpg -------------------------------------------------------------------------------- /sample/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmf19870210/RealtimeBlurView/HEAD/sample/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/layout/list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /library/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /library/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /sample/src/com/github/mmin18/realtimeblurview/sample/ListActivity.java: -------------------------------------------------------------------------------- 1 | package com.github.mmin18.realtimeblurview.sample; 2 | 3 | import android.os.Bundle; 4 | 5 | /** 6 | * Created by mmin18 on 02/11/2017. 7 | */ 8 | 9 | public class ListActivity extends android.app.ListActivity { 10 | @Override 11 | protected void onCreate(Bundle savedInstanceState) { 12 | super.onCreate(savedInstanceState); 13 | 14 | setListAdapter(new MyListAdapter(this, R.layout.list_item_blur)); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sample/res/layout/list_item_blur.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2016 Tu Yimin (http://github.com/mmin18) 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /sample/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.ap_ 3 | 4 | # Files for the Dalvik VM 5 | *.dex 6 | 7 | # Java class files 8 | *.class 9 | 10 | # Generated files 11 | bin/ 12 | gen/ 13 | out/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | 19 | # Local configuration file (sdk path, etc) 20 | local.properties 21 | 22 | # Proguard folder generated by Eclipse 23 | proguard/ 24 | 25 | # Log Files 26 | *.log 27 | 28 | # Android Studio Navigation editor temp files 29 | .navigation/ 30 | 31 | # Android Studio captures folder 32 | captures/ 33 | 34 | # Intellij 35 | *.iml 36 | 37 | # Android Studio 38 | .idea/ 39 | .gradle 40 | /*/local.properties 41 | /*/out 42 | /*/*/build 43 | /*/*/production 44 | *.iml 45 | *.iws 46 | *.ipr 47 | *~ 48 | *.swp 49 | -------------------------------------------------------------------------------- /sample/res/layout/popup_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 12 | 13 | 20 | 21 |