以编程方式使用USB传输/共享图像

时间:2014-04-16 04:04:32

标签: android usb

我在 代码下面使用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);

0 个答案:

没有答案