Uri uri = Uri.fromFile( F );
Intent Intent = new Intent ("org.androidprinting.intent.action.PRINT");
Intent.setDataAndType( uri, "text/plain" );
context.startActivityForResult(Intent, 0);
You can get the intents by running the app and reading the unfiltered logs.