Resources
res =
ShowActivity
.
this
.
getResources
();
//
拿到初始图
Bitmap
bmp=
BitmapFactory
.
decodeResource
(res,
R
.
mipmap
.
user
);
//
处理得到模糊效果的图
Bitmap
blurBitmap =
ImageFilter
.
blurBitmap
(
this
, bmp,
20f
);
img
.
setImageBitmap
(blurBitmap);
ImageFilter.java
public class ImageFilter {
//图片缩放比例
private static final float BITMAP_SCALE = 0.4f;
* 模糊图片的具体方法
* @param context 上下文对象
* @param image 需要模糊的图片
* @return 模糊处理后的图片
public static Bitmap blurBitmap(Context context, Bitmap image, float blurRadius) {
// 计算图片缩小后的长宽
int width = Math.round(image.getWidth() * BITMAP_SCALE);
int height = Math.round(image.getHeight() * BITMAP_SCALE);
// 将缩小后的图片做为预渲染的图片
Bitmap inputBitmap = Bitmap.createScaledBitmap(image, width, height, false);
// 创建一张渲染后的输出图片
Bitmap outputBitmap = Bitmap.createBitmap(inputBitmap);
// 创建RenderScript内核对象
RenderScript rs = RenderScript.create(context);
// 创建一个模糊效果的RenderScript的工具对象
ScriptIntrinsicBlur blurScript = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs));
// 由于RenderScript并没有使用VM来分配内存,所以需要使用Allocation类来创建和分配内存空间
// 创建Allocation对象的时候其实内存是空的,需要使用copyTo()将数据填充进去
Allocation tmpIn = Allocation.createFromBitmap(rs, inputBitmap);
Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap);
// 设置渲染的模糊程度, 25f是最大模糊度
blurScript.setRadius(blurRadius);
// 设置blurScript对象的输入内存
blurScript.setInput(tmpIn);
// 将输出数据保存到输出内存中
blurScript.forEach(tmpOut);
// 将数据填充到Allocation中
tmpOut.copyTo(outputBitmap);
return outputBitmap;
效果图://模糊Resources res = ShowActivity.this.getResources();//拿到初始图Bitmap bmp= BitmapFactory.decodeResource(res,R.mipmap.user);//处理得到模糊效果的图Bitmap blurBitmap = ImageFilter.blurBitmap(this, bmp, 20f);...
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;
import androidx.viewpager.widget.ViewPager;
import
在模仿 IOS 密码输入页面的时候发现其背景有模糊处理,于是了解了一下并记录下来,以便使用.
在Android 中具体实现方法如下:
查考 http://www.cnblogs.com/lipeil/p/3997992.html
private void applyBlur() {
// 获取壁纸管理器
WallpaperManager wallpaperManager = Wal...
转载请注入出处
如图:在同个布局中实现透明和模糊效果,这个其实并不难。但关键的是实现侧滑出现或者是在某个控件布局需要的时候,设置的属性不能够完全的实现想要的效果。好了,不
多说,看效果图
添加其他布局背景后就变成这种效果了
看完效果,开始贴代码
其实实现起来很简单,就只需要导入v8包,并实现几个方法就OK了
XML布局:
xmlns:android="http:/
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="10dp" />
</shape>
2. 在布局文件中,将 ImageView 的背景设置为刚才创建的 xml 文件:
<ImageView
android:id="@+id/my_image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/rounded_corner"
android:src="@drawable/my_image" />
3. 如果需要在代码中设置圆角,可以使用以下代码:
ImageView imageView = findViewById(R.id.my_image_view);
GradientDrawable drawable = (GradientDrawable) imageView.getBackground();
drawable.setCornerRadius(10f);
其中,10f 是圆角的半径,可以根据需要进行调整。