为透明度叠加添加模糊效果

时间:2019-06-24 05:41:43

标签: java android

找不到将模糊效果添加到透明叠加层以放置在本机Android应用中的视频背景上的解决方案。

尝试过alpha等,但是这些解决方案不适用于视频,仅适用于图像。

 <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffffff"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:weightSum="105" android:orientation="vertical"> top layout with image <LinearLayout android:background="@drawable/s" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="45"> </LinearLayout> <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="60" android:weightSum="75" > <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:alpha="0.5" android:adjustViewBounds="true" android:scaleType="fitXY" android:src="@drawable/s"/> <LinearLayout

目前,我只能在背景视频上放置透明的叠加层,因此无法添加模糊效果。有什么建议吗?

0 个答案:

没有答案