Baseflow / XamarinMediaManager

Cross platform Xamarin plugin to play and control Audio and Video
https://baseflow.com
MIT License
769 stars 306 forks source link

Video is dark #343

Closed dmmg83 closed 5 years ago

dmmg83 commented 6 years ago

Thank you for your great job @SimonSimCity @modplug @candidodmv @nickrandolph @NicoKno .

When I playback a video, the video looks very dark, how can I increase the brightness? Xamarin Forms PCL. Android.

dmmg83 commented 6 years ago

I solve it adding this line on mainactivity in Android project: this.Window.Attributes.DimAmount = 0;

toverux commented 6 years ago

It can also be disabled through an Android style entry:

<!-- Avoid a strange behavior: when a VideoView is created, screen has a flash of black,
     then the video playback is dim -->
<item name="android:backgroundDimEnabled">false</item>