****I am developing Video Player and i am using Media_controller here is the link below****
But in this I visible next and prev button and when I call to set Prev Next Listeners Method then its still not working both next and prev button code is here below
mNextButton = (ImageView) v.findViewById(R.id.next);
if (mNextButton != null && !mFromXml && !mListenersSet) {
mNextButton.setVisibility(View.VISIBLE);
setPrevNextListeners(mNextListener,null);
}
mPrevButton = (ImageView) v.findViewById(R.id.prev);
if (mPrevButton != null && !mFromXml && !mListenersSet) {
mPrevButton.setVisibility(View.VISIBLE);
setPrevNextListeners(mPrevListener,null);
}