15

我正在编写一个连接到后台站点的应用程序。后台站点包含大量 JavaScript 函数,至少是普通站点的 100 倍。不幸的是,它不会加载它们,并导致许多功能无法正常工作。所以我正在做一个测试。我在我的服务器上放了一个页面来加载 FireBugLite javascript 文本。它有很多 javascript,非常适合测试并查看 Android WebView 是否会加载它。WebView 不加载任何内容,但浏览器加载 Firebug 图标。到底有什么不同,为什么它可以在浏览器中运行,而不是在我的 WebView 中?有什么建议么。

更多背景信息,为了在 Droid(或除 windows 之外的任何其他平台)上获得臭名昭著的后台应用程序,我需要欺骗 bakcoffice 应用程序,使其相信访问该网站的是 Internet Explorer。我通过修改 WebView 用户代理来做到这一点。

同样对于这个应用程序,我已经缩小了我的登陆页面,所以我可以给你提供帮助的来源。

package ksc.myKMB;

import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.ProgressDialog;
import android.content.DialogInterface;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.Window;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebSettings; 
import android.webkit.WebViewClient;
import android.widget.Toast;

public class myKMB extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState); /** Performs base set up */

        /** Create a Activity of this Activity, IE myProcess */
        myProcess = this;

        /*** Create global objects and web browsing objects */
        HideDialogOnce = true;
        webview = new WebView(this) {

        };
        webChromeClient = new WebChromeClient() {
         public void onProgressChanged(WebView view, int progress) {
                // Activities and WebViews measure progress with different scales.
                // The progress meter will automatically disappear when we reach 100%
          myProcess.setProgress((progress * 100));
          //CreateMessage("Progress is : " + progress);
              }
        };
        webViewClient = new WebViewClient() {
          public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
                 Toast.makeText(myProcess, MessageBegText + description + MessageEndText, Toast.LENGTH_SHORT).show();
               }  
          public void onPageFinished (WebView view, String url) {
              /** Hide dialog */
           try {
           // loadingDialog.dismiss();  
           } finally {

           }

           //myProcess.setProgress(1000);
           /** Fon't show the dialog while I'm performing fixes */
              //HideDialogOnce = true;
view.loadUrl("javascript:document.getElementById('JTRANS011').style.visibility='visible';");

          }

          public void onPageStarted(WebView view, String url, Bitmap favicon) {

       if (HideDialogOnce == false) {
         //loadingDialog = ProgressDialog.show(myProcess, "", 
                //   "One moment, the page is laoding...", true);
       } else {
        //HideDialogOnce = true;
       }
      }

    };


    getWindow().requestFeature(Window.FEATURE_PROGRESS);
            webview.setWebChromeClient(webChromeClient);
    webview.setWebViewClient(webViewClient);
    setContentView(webview);


    /** Load the Keynote Browser Settings */
    LoadSettings();
    webview.loadUrl(LandingPage);


}

    /** Get Menu */
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
     MenuInflater inflater = getMenuInflater();
     inflater.inflate(R.menu.menu, menu);
     return true;
    }

    /** an item gets pushed */
    @Override
 public boolean onOptionsItemSelected(MenuItem item) {
  switch (item.getItemId()) {
  // We have only one menu option
  case R.id.quit:
   System.exit(0);
   break;
  case R.id.back:
   webview.goBack();
  case R.id.refresh:
   webview.reload();
  case R.id.info:
   //IncludeJavascript("");
  }
  return true;
 }


/** Begin Globals */
public WebView webview;
public WebChromeClient webChromeClient;
public WebViewClient webViewClient;
public ProgressDialog loadingDialog; 
public Boolean HideDialogOnce; 
public Activity myProcess;
public String OverideUserAgent_IE = "Mozilla/5.0 (Windows; MSIE 6.0; Android 1.6; en-US) AppleWebKit/525.10+ (KHTML, like Gecko) Version/3.0.4 Safari/523.12.2 myKMB/1.0";
public String LandingPage = "http://kscserver.com/main-leap-slim.html";
public String MessageBegText = "Problem making a connection, Details: ";
public String MessageEndText = " For Support Call: (xxx) xxx - xxxx.";

public void LoadSettings() {

 webview.getSettings().setUserAgentString(OverideUserAgent_IE);
 webview.getSettings().setJavaScriptEnabled(true);
 webview.getSettings().setBuiltInZoomControls(true);
 webview.getSettings().setSupportZoom(true);
}

/** Creates a message alert dialog */
public void CreateMessage(String message) {

 AlertDialog.Builder builder = new AlertDialog.Builder(this);
 builder.setMessage(message)
        .setCancelable(true)
        .setNegativeButton("Close", new DialogInterface.OnClickListener() {
          public void onClick(DialogInterface dialog, int id) {
           dialog.cancel();
          }
        });
 AlertDialog alert = builder.create();
 alert.show();
}


}

后台应用程序是我的应用程序,在模拟器中运行。顶级应用程序是浏览器。您会看到浏览器有萤火虫图标,并且可以激活萤火虫,但应用程序没有萤火虫图标。http://img413.imageshack.us/img413/9628/myapp.gif

我的应用程序在后台运行,您可以在右下角看到没有 Firebug。但是浏览器(顶部的模拟器)具有相同的页面,但显示了萤火虫。我究竟做错了什么?我假设它没有足够的内存分配给应用程序、进程功率分配或物理内存。我不知道,我只知道结果很奇怪。

我从我的 android 设备上得到了同样的东西,应用程序没有显示萤火虫,但浏览器显示了萤火虫。

我已经在网络浏览器上安装了 JavaScript,问题是网络视图的行为与网络浏览器不同。

4

1 回答 1

5

对我来说效果很好。我可以在 WebView 中看到 FireBug 图标。

这条线是邪恶的,我想你应该删除它:

webview.getSettings().setUserAgentString(OverideUserAgent_IE);
于 2010-06-11T02:43:09.297 回答