我使用android webview制作了一个Android应用程序。这个应用程序实际上是一个包含不同课程的移动网站。
在网站上: 当我打开课程页面时,会有一个课程pdf链接,点击后会在新标签页中打开。
在Android应用中 在移动应用程序中打开网站后,课程链接(在菜单中)将在浏览器中打开。
我的要求是课程页面中的pdf链接应该在新标签页中打开。
以下是我尝试的代码。
MainActivity.java
package com.education.xxxxxxx;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
public class MainActivity extends AppCompatActivity {
private static final String TAG = "";
private WebView myWebView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
myWebView = (WebView)findViewById(R.id.webview);
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
// myWebView.loadUrl("http://xxxxxxx.com/");
// myWebView.setWebViewClient(new WebViewClient());
String myPdfUrl = "http://xxxxxxx.com/";
if(myPdfUrl.endsWith(".pdf")){
String googledocs="https://docs.google.com/viewer?url=";
String pdf_url=googledocs+myPdfUrl;
myWebView.loadUrl(pdf_url);
}
else{
myWebView.loadUrl(myPdfUrl);
}
}
@Override
public void onBackPressed() {
if(myWebView.canGoBack()){
myWebView.goBack();
} else {
super.onBackPressed();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
// getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
return super.onOptionsItemSelected(item);
}
}
答案 0 :(得分:1)
WebView不支持标签。全部只在现有的一个标签上打开,主标签。您可以做的是在包含另一个WebView的新活动中打开pdf。
答案 1 :(得分:0)
pdf不会直接打开,您可以使用google doc viewer
WebView webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
String pdf = "http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf";
webview.loadUrl("http://drive.google.com/viewerng/viewer?embedded=true&url=" + pdf);
查看this