package com.example.jingbin.cloudreader.view.webview.config; import android.content.Context; import android.view.MotionEvent; import android.widget.FrameLayout; /** * Created by jingbin on 2016/11/17. */ public class FullscreenHolder extends FrameLayout { public FullscreenHolder(Context ctx) { super(ctx); setBackgroundColor(ctx.getResources().getColor(android.R.color.black)); } @Override public boolean onTouchEvent(MotionEvent event) { return true; } }