我在 代码下面使用Intent打印/通过蓝牙分享图像 ,但现在我必须做同样的事情(转移/共享)图像USB 以编程方式。
查看我现有的代码,我用它来使用蓝牙传输/共享图像,但不知道如何使用USB做同样的事情
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setComponent(new ComponentName(
"com.android.bluetooth",
"com.android.bluetooth.opp.BluetoothOppLauncherActivity"));
intent.setType("image/jpeg");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(fileToPrint));
startActivity(intent);