RT,最好有代码讲解,谢谢了

解决方案 »

  1.   

    你不是我同事吧? 
    天天拿我板子测蓝牙接收名片,搞的我的Log里都是你的BT log !!
      

  2.   

    名片是指什么?手机中的通讯录么?建议先看看android.bluetooth包下的几个类~~~
      

  3.   

    蓝牙中的接口我晓得,现在有一段
      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);
    那么现在这里离的Uri是多少,setType()里面的格式又要是多少啊?