I have exoplayer in my Android app and want to do 'Forward', 'Rewind' programmatically and these two button are not in the control view layout.
This two-button are outside exoplayer view, but in the screen and when user will click on "Forward" or "Rewind" it will work accordingly.
Some blogs given solution but all are for control view, example:
app:fastforward_increment="30000"
app:rewind_increment="30000"
But in my case button are completely outside of the player view.
The same question was asked earlier here, but there was no proper solution.
Tried following code but not getting any impact:
//switch case onClick listener for 'Forward' and 'Rewind'
case R.id.text_view_rewind:
simpleExoPlayerView.setRewindIncrementMs(5000);
break;
case R.id.text_view_forward:
simpleExoPlayerView.setFastForwardIncrementMs(5000);
break;
