我想从
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