Web视图缩放控件

时间:2013-01-28 14:08:39

标签: android android-webview

htmlp = URLEncoder.encode(desc,"utf-8").replaceAll("\\+"," ");
            WebView wv=(WebView)findViewById(R.id.webView1);
            wv.setInitialScale(70);
            wv.getSettings().setJavaScriptEnabled(true);
            wv.getSettings().setPluginsEnabled(true);           
            wv.getSettings().setSupportZoom(true);
            wv.getSettings().setLoadWithOverviewMode(true);
            wv.getSettings().setBuiltInZoomControls(true);
            wv.loadData(htmlp,"text/html", "utf-8");

在htmlp中包含HTML内容(标签)。现在我必须启用缩放控制,但使用上面的代码它不起作用。我必须在webview的xml部分启用任何内容。

提前致谢

3 个答案:

答案 0 :(得分:0)

这在我的情况下效果很好。试试你的情况..
在清单文件中..

<uses-permission android:name="android.permission.INTERNET">
</uses-permission>

<强> webview.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" 
>
  <WebView
    android:id="@+id/webView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
  />
</LinearLayout>

活动..

public class Main extends Activity {
  private WebView myWebView;
  private static final FrameLayout.LayoutParams ZOOM_PARAMS = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT,Gravity.BOTTOM);

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    this.setContentView(R.layout.webview);
    this.myWebView = (WebView) this.findViewById(R.id.webView);

    FrameLayout mContentView = (FrameLayout) getWindow().
    getDecorView().findViewById(android.R.id.content);
    final View zoom = this.myWebView.getZoomControls();
    mContentView.addView(zoom, ZOOM_PARAMS);
    zoom.setVisibility(View.GONE);

    this.myWebView.loadUrl("http://www.facebook.com");
  }
}

答案 1 :(得分:0)

   wv.getSettings().setBuiltInZoomControls(false);

更改为false

答案 2 :(得分:0)

最后我解决了这个问题。问题出在设计部分。刚刚将布局参数更改为:

WebView
         android:layout_width="match_parent"
         android:layout_height="match_parent"