Library project to display DialogFragment with a blur effect.
Library project to display DialogFragment with a blur effect.
This project allows to display DialogFragment with a burring effect behind. The blurring part is achieved through FastBlur algorithm thanks to the impressive work of Pavlo Dudka (cf Special Thanks).
Download the sample app on the Google Play store.
Since the library is promoted on maven central, just add a new gradle dependency :
compile 'fr.tvbarthel.blurdialogfragment:lib:2.2.0'
Don't forget to check the [Use RenderScript in Your Project] (#use-renderscript-in-your-project) if you're planning to use it.
Activity with action bar [blurRadius 4, downScaleFactor 5.0] :
Fullscreen activity [blurRadius 2, downScaleFactor 8.0] :
Simply add this line to your build.gradle
defaultConfig {
...
renderscriptTargetApi 22
renderscriptSupportModeEnabled true
...
}
If you are using android.app.DialogFragment : extends BlurDialogFragment. Play with the blur radius and the down scale factor to obtain the perfect blur.
Don't forget to enable log if you want to keep on eye the performance.
/**
* Simple fragment with blurring effect behind.
*/
public class SampleDialogFragment extends BlurDialogFragment {
}
If you are using android.support.v4.app.DialogFragment : extends SupportBlurDialogFragment. Play with the blur radius and the down scale factor to obtain the perfect blur.
Don't forget to enable log in order to keep on eye the performance.
/**
* Simple fragment with blurring effect behind.
*/
public class SampleDialogFragment extends SupportBlurDialogFragment {
}
…
Default values are set to :
…
If you want to avoid inheritance, use directly the BlurEngine. Don't forget to link the engine to the lifecycle of your DialogFragment.
…
We used a Nexus 5 running a 4.4.4 stock rom for this bench.
Down scale factor 8.0 & Blur Radius 8 : Screenshot
Radius : 8
Down Scale Factor : 8.0
Blurred achieved in : 18 ms
Allocation : 4320ko (screen capture) + 270ko (FastBlur)
Down scale factor 6.0 & Blur Radius 12 : Screenshot
Radius : 12
Down Scale Factor : 6.0
Blurred achieved in : 31 ms
Allocation : 4320ko (screen capture) + 360ko (FastBlur)
Down scale factor 4.0 & Blur Radius 20 : Screenshot
Radius : 20
Down Scale Factor : 4.0
Blurred achieved in : 75 ms
Allocation : 4320ko (screen capture) + 540ko (FastBlur)
<item name="android:windowActionBarOverlay">true</item>
Thanks to amasciul blurring effect can now be achieved using ScriptIntrinsicBlur (v1.1.0).
Find more information on the memory trace and on the execution time.
Contributions are welcome (: You can contribute through GitHub by forking the repository and sending a pull request.
When submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible. Please also make sure your code fit these convention by running gradlew check.
Credits go to Thomas Barthélémy https://github.com/tbarthel-fr and Vincent Barthélémy https://github.com/vbarthel-fr.
Copyright (C) 2014 tvbarthel
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Pavlo Dudka https://github.com/paveldudka/ , for his impressive article on Advanced blurring techniques.
Vincent Brison https://github.com/vincentbrison , for his early day support.
Alexandre Masciulli https://github.com/amasciul , for the integration of RenderScript.
No open issues yet, or sync has not completed.