0
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 部分で有効にする必要があるものです。

前もって感謝します

4

3 に答える 3

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");
  }
}
于 2013-01-28T15:42:36.613 に答える
0

ついに私はこの問題を解決しました。問題は設計セクションにありました。レイアウト パラメータを次のように変更しました。

WebView
         android:layout_width="match_parent"
         android:layout_height="match_parent"
于 2013-01-29T06:05:24.283 に答える