0
我試圖把一個半透明的覆蓋繪製(播放圖標三角形,表明有下面的視頻)在壁畫SimpleDraweeView通過設置繪製的阿爾法在SDV的層次結構中設置它之前,但是每當我使用覆蓋時,我都會得到一個完全不透明的drawable。半透明圖像疊加:可繪製失去阿爾法
Drawable playArrowOverlay = ContextCompat.getDrawable(
getContext(),
R.drawable.ic_play_arrow_accent_dark);
playArrowOverlay.setAlpha(25);
GenericDraweeHierarchy hierarchyWithOverlay = sdvAttemptImage.getHierarchy();
hierarchyWithOverlay.setOverlayImage(playArrowOverlay);
sdvAttemptImage.setHierarchy(hierarchyWithOverlay);