Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make MediaController show without hide

I try to use MediaController to play music. I want the MediaController appear until the "back" button is pressed. Now I have try below code:

MediaController mediaController = new MediaController(this){
@Override
public void setMediaPlayer(MediaPlayerControl player) {
super.setMediaPlayer(player);
this.show();
}
@Override
public void show(int timeout) {
super.show(0);
}
//instead of press twice with press once "back" button to back
@Override
public boolean dispatchKeyEvent(KeyEvent event) {
if(event.getKeyCode() == KeyEvent.KEYCODE_BACK) {
Activity a = (Activity)getContext();
a.finish();
}
return true;
}
}; 

But it still one trouble while the MediaController visible. When the MediaController appear touch the screen, the MediaController will hide. I also already try below code:

@Override
public boolean onTouchEvent(MotionEvent event) {
Log.d("screen","touch");
return true;
}

But it did not work. The string did not show in Logcat. Anyone has idea to do it?

like image 327
brian Avatar asked Nov 30 '22 07:11

brian


2 Answers

Override this method also inside media controller

@Override
            public void hide() {
                // TODO Auto-generated method stub
                super.show();
            }
like image 140
Chet Avatar answered Dec 05 '22 01:12

Chet


If you want to keep the hide() method but not have the controller disappearing every time a control is used :

this.mediaController = new MediaController(this){
    @Override
    public void show(int timeout) {
        super.show(0);
    }
};
like image 38
NBcrafts Avatar answered Dec 05 '22 01:12

NBcrafts