Intent intent =new Intent("android.setting_BLUETOOTH_SETTINGS ");
startactive(intent);
不能启动bt应用,我通过这个方法能启动wifi设置。报错intent category不对,通过xml查看能够知道bt的category为 VOICE_SEETING,是不是需要在manifast.xml进行intent-filter设置啊 ,应该怎么设置啊。
希望高手指点。

解决方案 »

  1.   

    Intent intent =new Intent("android.setting_BLUETOOTH_SETTINGS "); 
    intent.addCategory("your category here");
    startactive(intent); 试试
      

  2.   

    想起来了,看看是不是少了这句
    setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
      

  3.   

    进WIFI设置怎么进啊……高手们
      

  4.   

    intent.addCategory("Intent.catetory_voice_launch"),
    可是这个catetory_voice_launch没有啊。
      

  5.   

    进WIFI设置怎么进啊……高手们