Web视图全屏模式

时间:2011-12-15 08:58:09

标签: android

我在webview设置了swf文件我得到了一切都成功但是当我长按它给我全屏选项所以我需要避免它我怎么能这样做?

这里我附上了图片:

enter image description here

这是我的 webview

wv_introduction = (WebView) findViewById(R.id.ady_solwv);
                wv_introduction.getSettings().setJavaScriptEnabled(true);
                wv_introduction.getSettings().setPluginState(PluginState.ON);
                wv_introduction.getSettings().setAllowFileAccess(true);
                wv_introduction.loadUrl(str_url);

1 个答案:

答案 0 :(得分:0)

尝试添加以下内容:

wv_introduction.getSettings().setLoadWithOverviewMode(false);
wv_introduction.getSettings().setUseWideViewPort(false);

希望这会有所帮助。