繁体   English   中英

Android蓝牙激活错误

[英]android bluetooth activation error

我试图在Android中以编程方式激活蓝牙,并且应用程序安装正常,但是当我单击按钮激活BT时,它给出了异常。 我无法处理该异常。 任何帮助是极大的赞赏。 我是新来的。 这是代码:

package com.example.helloandroid2;


import java.io.IOException;

import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;

public class HelloAndroid extends Activity {
 // Declare our Views, so we can access them later

 private Button activate_buletooth;
    static final int REQUEST_ENABLE_BT = 0;
    Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
    BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Set Activity Layout
        setContentView(R.layout.main);

         activate_buletooth = (Button)findViewById(R.id.activate_buletooth);

        // Set Click Listener

            activate_buletooth.setOnClickListener(new OnClickListener() {
         @Override
         public void onClick(View v){
          if (mBluetoothAdapter == null) {
              // Device does not support Bluetooth
           Context context = getApplicationContext();
           CharSequence text = "BT not suported";
           int duration = Toast.LENGTH_SHORT;

           Toast toast = Toast.makeText(context, text, duration);
           toast.show();
          }     
          if (!mBluetoothAdapter.isEnabled()) {
              Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
              startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
          }

          // startActivityForResult(discoverableIntent, REQUEST_ENABLE_BT);

         }
        });

    }
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data)
    {
     if(requestCode == REQUEST_ENABLE_BT)
        {
      if(resultCode == RESULT_CANCELED)
            {
       Context context = getApplicationContext();
       CharSequence text = "bt not available";
       int duration = Toast.LENGTH_SHORT;

       Toast toast = Toast.makeText(context, text, duration);
       toast.show();
            }
       else
             {

             }
        }
    }
}

这是由于默认情况下启用蓝牙适配器所花费的时间。 我遇到了同样的问题,并且找到了答案。

在适配器打开蓝牙之前,在执行此onClick()事件后有望“执行”的代码。 可能有像循环这样的解决方案,在蓝牙完全打开之前,不允许循环执行其他代码。 或者可以使用setDelay()这样的方法来提供帮助。

欢迎进一步的帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM