Android Question Printing Wifi Samsung (Mobile print)

Juanll2003uy

Member
Licensed User
Longtime User
Hi, im using this method to print in a samsung printer using 'Mobile Print'

Dim Intent1 AsIntent

Intent1.Initialize("com.sec.print.mobileprint.action.PRINT", "")
Intent1.PutExtra("com.sec.print.mobileprint.extra.CONTENT", ParseUri("http://www.samsung.com"))
Intent1.putExtra("com.sec.print.mobileprint.extra.CONTENT_TYPE", "WEBPAGE")
Intent1.putExtra("com.sec.print.mobileprint.extra.OPTION_TYPE", "DOCUMENT_PRINT")
Intent1.putExtra("com.sec.print.mobileprint.extra.JOB_NAME", "Untitled")StartActivity(Intent1)


....Sub ParseUri(s AsString) As Object
Dim r AsReflector
Return r.RunStaticMethod("android.net.Uri", "parse", ArrayAs Object(s), ArrayAsString("java.lang.String"))
End Sub

It works fine, but i need to send the copies i need to print.

How can i do it?

Thanks!
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0

Juanll2003uy

Member
Licensed User
Longtime User
Ok thanks.
Another problem is that with newer versions of mobile print it doesnt work.
I have an error.
I must use an old version of the apk to work within problems.
 
Upvote 0
Top