Wish SMM changes to the display of MediaController

TILogistic

Expert
Licensed User
Longtime User
Someone has made changes to the display of MediaController (MediaView).
I want to change the screen type of controls like the ones shown below.

Note:
Only to advance the work if someone has already done it.

Current:

1710335830588.png


To this type of screen

1710336018254.png


or

1710336088287.png
 

TILogistic

Expert
Licensed User
Longtime User
Better to post it in the questions forum.

It should be simple to make these changes. Unzip MediaView and use the source code + layout file directly. You can make these changes in the layout file.
It's fine I understand it.

I'm thinking of doing what you say, I'm going to copy the library to customize it to my needs and use it in my APP.

I already made several behavior changes to MediaView via JavaObject and other source code changes.

Note:
You can move this post to the B4J consultation forum.


Thank you.
 

TILogistic

Expert
Licensed User
Longtime User
I made some changes to mediacontroller and mediaview.
changes to the display of controls.
and video settings.
Default
1710639347171.png


Change 1
Change background color Semitransparent

B4X:
    MediaViewController1.BackgroundColor = xui.Color_ARGB(190, 169, 169, 169)
    MediaViewController1.SetMediaView(MediaView1)

1710639803208.png


Change 2
Change background Gradient color

B4X:
    MediaViewController1.BackgroundColor = xui.Color_Black
    MediaViewController1.BackgroundColorGradient = True
    MediaViewController1.SetMediaView(MediaView1)

1710639163529.png
 
Top