本来是通过以下方式连接到蓝牙,但是目前我不晓得名片的位置是什么“Uri.parse(" file:///sdcard/caixin.png"))”;,难道从contentProvider里面拿吗
 Intent intent = new Intent(Intent.ACTION_SEND);
          intent.setClassName("com.android.bluetooth", "com.android.bluetooth.opp.BluetoothOppLauncherActivity");
          intent.putExtra(Intent.EXTRA_STREAM, Uri.parse(" file:///sdcard/caixin.png"));  // imageUri set previously
          intent.setType("image/png");
          startActivity(intent);