Android从mediaplayer中删除Fastforward和倒带按钮

前端之家收集整理的这篇文章主要介绍了Android从mediaplayer中删除Fastforward和倒带按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从 Android中的mediacontroller中删除fastforward和倒带按钮.谁能帮我这个?我想在我的主要活动中做到这一点.

解决方法

创建MediaController时,请确保在构造函数中将boolean设置为false:
MediaController mediaController = new MediaController(this,false);

documentation

The “rewind” and “fastforward” buttons are shown unless requested otherwise by using the MediaController(Context,boolean) constructor with the boolean set to false

原文链接:https://www.f2er.com/android/314329.html

猜你在找的Android相关文章