/MaterialBlurProfile

An Android XML profile layout for dynamic Blurry Background with Circle Image View

Primary LanguageJava

MaterialBlurProfile

An Android XML profile layout for dynamic Blurry Background with Circle Image View

The sample UI looks like below

It uses Picasso in combincation with some transformation on it to make it circular along with blurry background.

Circular Image

Picasso.with(mContext)
                .load(pic_url)
                .noFade()
                .placeholder(R.mipmap.ic_placeholder_man)
                .transform(new CircleTransform())
                .into(_imgProfile);

Blurry Image

Picasso.with(mContext).load(pic_url).transform(new BlurTransformation(mContext)).into(mCustomLayout);

Inspired From https://github.com/wasabeef/picasso-transformations