Quantcast
Channel: Appcelerator Developer Center Q&A Tag Feed (print)
Viewing all articles
Browse latest Browse all 20

Its possible to do a print intent form appcelerator?

$
0
0

Its possible to do that in appcelerator ?

Intent intent = new Intent("com.sec.print.mobileprint.action.PRINT");
Uri uri = Uri.parse(“http://www.samsung.com");
intent.putExtra("com.sec.print.mobileprint.extra.CONTENT", uri );
intent.putExtra("com.sec.print.mobileprint.extra.CONTENT_TYPE", “WEBPAGE");
intent.putExtra("com.sec.print.mobileprint.extra.OPTION_TYPE", “DOCUMENT_PRINT");
intent.putExtra("com.sec.print.mobileprint.extra.JOB_NAME", "Untitled");
startActivity(intent);

Viewing all articles
Browse latest Browse all 20

Trending Articles