android蓝牙调用系统发送文件的方法

  • Post author:
  • Post category:其他


分享给大家

	//调用系统程序发送文件
	ContentValues cv = new ContentValues();
	String uri = "file://" + mSendFileNameTV.getText().toString().trim();
	cv.put("uri", uri);
	cv.put("destination", mTouchObject.bluetoothDevice.getAddress());
	cv.put("direction", 0);
	Long ts = System.currentTimeMillis();
	cv.put("timestamp", ts);
	getContentResolver().insert(Uri.parse("content://com.android.bluetooth.opp/btopp"), cv);



版权声明:本文为yuzui0810原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。