据我所知,WebView与内置浏览器是一回事?对?
我面临的问题是,包含一些绝对定位div元素的页面都堆叠在彼此之上,而不是找到正确的位置,并且背景图像被完全忽略。
这就是说,在我的手机上的浏览器(HTC Incredible S - 2.3.3,股票浏览器)正确地呈现它,并且除此之外,使用嵌入式webview的应用程序,我可以将它指向页面,正确渲染。这使我感到相信我的应用程序中的webview以某种方式变成了bjorking。
import android.app.Activity;
import android.content.Intent;
import android.graphics.Rect;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.webkit.WebSettings.LayoutAlgorithm;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.Toast;
import java.util.*;
public class ShowWebView extends Activity {
public WebView web;
public String baseURL = "http://test.dev/";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webpage);
web = (WebView) findViewById(R.id.webpage);
home = (Button) findViewById(R.id.tool_Home);
back = (ImageButton) findViewById(R.id.tool_Back);
forward = (ImageButton) findViewById(R.id.tool_Forward);
refresh = (ImageButton) findViewById(R.id.tool_Refresh);
ajax = (ImageView) findViewById(R.id.test_anim);
ajax.setBackgroundResource(R.drawable.ajax_animation);
// Settings
web.getSettings().setJavaScriptEnabled(true);
web.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);
web.setWebViewClient(new WebViewClient());
Bundle extras = getIntent().getExtras();
if(extras != null) {
String url = baseURL+extras.getString("page")+"?androidApplication"; // The Basics, page gets added to baseURL
String id = "";
String push = "false"; // false by default
// If an ID exists, lets get it
if(extras.getString("id") != null) {
id = extras.getString("id");
}
if(extras.getString("push") != null) {
push = extras.getString("push");
}
// Build the URL
if(id != "") url = url + "&id="+id;
if(push != "false") url = url + "&pushVersion";
web.loadUrl(url);
} else {
web.loadUrl("http://www.bing.com");
}
}
也是我的webview xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
style="@style/MainPage"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/Header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:id="@+id/ImageView01"
android:layout_width="match_parent"
android:layout_height="42sp"
android:scaleType="fitXY"
android:src="@drawable/top_header" />
</LinearLayout>
<LinearLayout
android:id="@+id/SubHeader"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="28sp"
android:scaleType="fitXY"
android:src="@drawable/top_sub_header" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:orientation="vertical" >
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webpage"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/toolBar"
android:layout_width="match_parent"
android:layout_height="40sp"
android:layout_marginTop="2.5sp"
android:orientation="horizontal" >
<Button
android:id="@+id/tool_Home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Home" />
<ImageButton
android:id="@+id/tool_Back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/backward" />
<ImageButton
android:id="@+id/tool_Forward"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/forward" />
<ImageButton
android:id="@+id/tool_Refresh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/refresh" />
<ImageView
android:id="@+id/test_anim"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_centerHorizontal="true" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
解决这个问题的任何帮助都会非常棒!
答案 0 :(得分:5)
显然:
web.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);
导致webview吓坏了,因为它重新组织了html渲染器以将所有内容放在一个列中(或者尝试无论如何)。禁用此行或使用NARROW_COLUMN会导致渲染很好。
我只是使用此行来禁用水平滚动。所以现在我有问题需要再次处理。