我在 Android JNI代码中找到了Cocos2dxVideoView 这个类,修改了其中点击事件,但是没有生效,视频一进去就黑屏了,也没法有后续动作
@Override
public boolean onTouchEvent(MotionEvent event) {
if((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_UP){
if (isPlaying()) { stop(); ViewGroup group = (ViewGroup)mCocos2dxActivity.getWindow().getDecorView(); group.removeView(Cocos2dxVideoView.this); //((ViewGroup)Cocos2dxVideoView.this.getParent()).removeView(Cocos2dxVideoView.this); } }
return true;
}
求高人指点 比较急