我正确设置了我的打印机,从第三方应用程序进行打印。
但我想从我自己的Android应用程序打印。我绑了官方教程: https://developers.google.com/cloud-print/docs/android
但WebView中的“打印”按钮不起作用。
诀窍是什么:)
答案 0 :(得分:3)
我遇到了同样的问题,直到我在Android开发者网站上找到了解决方案:http://developer.android.com/guide/webapps/webview.html。
您应用的AndroidManifest.xml中的targetSdkVersion
可能设置为17或更高。在这种情况下,您需要对从Google Developer网站获得的PrintDialogActivity
进行一些小改动。您需要将注释@JavascriptInterface
添加到PrintDialogJavaScriptInterface
类中的公共方法。
final class PrintDialogJavaScriptInterface
{
@JavascriptInterface
public String getType()
{
return cloudPrintIntent.getType();
}
@JavascriptInterface
public String getTitle()
{
return cloudPrintIntent.getExtras().getString("title");
}
@JavascriptInterface
public String getContent()
{
try
{
ContentResolver contentResolver = getContentResolver();
InputStream is = contentResolver.openInputStream(cloudPrintIntent.getData());
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] buffer = new byte[4096];
int n = is.read(buffer);
while (n >= 0)
{
baos.write(buffer, 0, n);
n = is.read(buffer);
}
is.close();
baos.flush();
return Base64.encodeToString(baos.toByteArray(), Base64.DEFAULT);
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
return "";
}
@JavascriptInterface
public String getEncoding()
{
return CONTENT_TRANSFER_ENCODING;
}
@JavascriptInterface
public void onPostMessage(String message)
{
if (message.startsWith(CLOSE_POST_MESSAGE_NAME))
{
finish();
}
}
}