如何通过点击请求Android用户启用蓝牙?

时间:2015-02-09 14:25:51

标签: android bluetooth

来自http://developer.android.com/guide/topics/connectivity/bluetooth.html我知道我需要以下内容来请求用户启用他的BT:

if (!mBluetoothAdapter.isEnabled()) 
{
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
}

但问题是如何在课堂上使用它?为什么我的代码会在点击此活动的按钮时崩溃:

public class Opponents extends Activity 
{
      private final static int REQUEST_ENABLE_BT=1;
      BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

      @Override
      protected void onCreate(Bundle savedInstancesState)
      {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.opponents);

        final Button button1 = (Button) findViewById(R.id.button1);
        button1.setOnClickListener(new View.OnClickListener() 
        {
          public void onClick(View view)
          {
            if(!mBluetoothAdapter.isEnabled())
            {
              Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
              startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
            }
          }
        });
}

2 个答案:

答案 0 :(得分:9)

您是否在AndroidManifest.xml文件中设置了适当的权限? 当然,您需要BLUETOOTH权限。

<manifest ... >
  <uses-permission android:name="android.permission.BLUETOOTH" />
  ...
</manifest>

此外,正如文件所说:

  

如果您希望自己的应用启动设备发现或操作   蓝牙设置,您还必须声明BLUETOOTH_ADMIN   权限。

如果要启用其中一项功能,则需要以下代码:

<manifest ... >
  <uses-permission android:name="android.permission.BLUETOOTH" />
  <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
  ...
</manifest>

答案 1 :(得分:4)

在您调用以下方法之前

!mBluetoothAdapter.isEnabled()
在适配器上

,您必须确保mBluetoothAdapter不为空。在您的情况下,它必须为null并崩溃。如果mBluetoothAdapter为null,则android文档说该设备不支持蓝牙。