我在android studio中使用webview创建了一个项目,除了一些错误外,一切正常。
请帮帮我。
我正试图在最后一周对它们进行排序。
谢谢。
MainActivity Java代码
package com.xxxxxxx.xxxx;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebSettings;
import android.webkit.WebView;
public class MainActivity extends Activity {
WebView mywebview;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mywebview = (WebView) findViewById(R.id.webview);
mywebview.loadUrl("http://www.pccegoa.org");
WebSettings webSettings = mywebview.getSettings();
webSettings.setJavaScriptEnabled(true);
mywebview.getSettings();
setLayoutAlgorithm(WebSettings.LayoutAlgorithm.SINGLE_COLUMN);
mywebview.getSettings().setLoadWithOverviewMode(true);
mywebview.getSettings().setUseWideViewPort(true);
mywebview.getSettings().setBuiltInZoomControls(true);
mywebview.setWebViewClient(new ourViewClient());
}
@Override
public void onBackPressed (){
if(mywebview.canGoBack()) mywebview.goBack();
else super.onBackPressed();
}
}
myViewClient java文件
package com.xxxxxxxx.xxxx;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class ourViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView v, String url)
{
v.loadUrl(url);
return true;}}
activity_Main文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<WebView
android:id="@+id/webview"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
</WebView>
</RelativeLayout>