英文:
How to Allow Print button in Android Web-view Using Java?
问题
如何在Android Studio中使用Java在Web视图中打印页面?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Hello World!</h1>
<h3>Here is English, Spanish, Arabic, Hindi, Japanese, Korean and Assamese</h3>
<ul>
<li>I won't pretend to be the someone that I am not.</li>
<li>No pretenderé ser el alguien que no soy.</li>
<li>मैं वह होने का नाटक नहीं करूँगा जो मैं नहीं हूँ।</li>
<li>私は自分ではない誰かのふりをするつもりはありません</li>
<li>나는 내가 아닌 다른 사람인 척하지 않을 것입니다.</li>
</ul>
<button type="button" onclick="window.print()">Print</button>
</body>
</html>
在Android Web视图中,如何使用打印按钮允许用户打印页面,您可以查看下面的图片来了解我的实际意思:Output
英文:
How to Print a page in Web-view in Android Studio Using Java?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Hello World!</h1>
<h3>Here is English, Spanish, Arabic, Hindi, Japanese, Korean and Assamese</h3>
<ul>
<li>I won't pretent to be the someone that I am not.</li>
<li>No pretenderé ser el alguien que no soy.</li>
<li>मैं वह होने का नाटक नहीं करूँगा जो मैं नहीं हूँ।</li>
<li>私は自分ではない誰かのふりをするつもりはありません</li>
<li>나는 내가 아닌 다른 사람인 척하지 않을 것입니다.</li>
</ul>
<button type="button" onclick="window.print()">Print</button>
</body>
</html>
Here how can we allow users to print the page in android web-view using only the Print button.
You can check this picture below what I actually mean
答案1
得分: 1
在项目应用文件夹中创建 assets
文件夹,并创建一个扩展名为 .html 的文件,然后将您的代码粘贴到该文件中。在 Activity 的 onCreate()
方法中调用以下代码:
setContentView(R.layout.webview);
webView = (WebView) findViewById(R.id.webView1);
webView.loadUrl("file:///android_asset/xyz.html");
英文:
Create assets
folder in project app folder and create file with .html extension and paste your code in that file. And call below code in onCreate()
method of an Activity
setContentView(R.layout.webview);
webView = (WebView) findViewById(R.id.webView1);
wv.loadUrl("file:///android_asset/xyz.html");
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论