私は以下のコードを使用してプリンタにコマンドを送信しています。一時フォルダーが作成され、フォルダーにファイルが送信されます。それは私が言ってエラー与え `イメージをアンドロイドで印刷
"No activity found to handle the intent( act=com.dynamixsoftware.printershare.print dat=file:///mnt/sdcard/temp/picture1230841297.stream typ=application/x-android-picture-stream (has extras) } "
コードが
public static boolean queuePictureStreamForPrinting(Context context, File f)
{
// send to print activity
Uri uri = Uri.fromFile(f);
Intent i = new Intent(PRINT_ACTION);
i.setDataAndType(uri, "application/x-android-picture-stream");
i.putExtra("scaleFitToPage", true);
context.startActivity(i);
return true;
}
何をしないのです上の任意の提案ですか?
i.setDataAndType(uri、 "application/x-android-picture-stream")行にエラーが表示されています。おそらく私はこれのための正しいデータ型が不足しています。誰がそれが何であるか教えてもらえますか? – Khush