0

奇妙な問題に遭遇しました。アクティビティから、インテントを介して Bluetooth のアクティベーションと 300 の検出可能性をリクエストします。

Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);                        
discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
startActivity(discoverableIntent);

Bluetoothがすでに有効になっているかどうかに関係なく使用します。そうすることで、ダイアログのアクセス許可が期待どおりに表示されます。

「Bluetooth 許可要求: お使いの携帯電話のアプリケーションが、Bluetooth をオンにする許可を要求しています...」

しかし、はいまたはいいえを入力しても、ダイアログは何度も表示され続けます。どうしてか分かりません。私のコード:

public class Initial extends Activity {

 private Integer REQUEST_ENABLE_BT  = 1;
 private Integer REQUEST_ENABLE_DISCBT  = 2;
 private ListView listView;
 private  ArrayAdapter<String> mArrayAdapter;
 TextView editText;
 private Global global;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_initial);
    this.global= ((Global)this.getApplicationContext());
    editText = (TextView) findViewById(R.id.textView1);     
    global.setAdapter(BluetoothAdapter.getDefaultAdapter());
    if (global.getAdapter() == null) {
        // Device does not support Bluetooth
        editText.setText("Erro: Sistema não suporta Bluetooth!");
        finish();
    }
    listView = (ListView) findViewById(R.id.list);
    mArrayAdapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1);
    listView.setAdapter(mArrayAdapter);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.initial, menu);
    return true;
}

@Override
public void onResume() {
    super.onResume();  // Always call the superclass method first
    if(!global.getEstado()){
        if (!global.getAdapter().isEnabled()) {
            Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
            startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
        }
        else
            editText.setText("Bluetooth Ligado!");
        global.setReceiver(new BroadcastReceiver() {
            public void onReceive(Context context, Intent intent) {
                String action = intent.getAction();
                // When discovery finds a device
                if (BluetoothDevice.ACTION_FOUND.equals(action)) {
                    // Get the BluetoothDevice object from the Intent
                    BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                    // Add the name and address to an array adapter to show in a ListView
                    mArrayAdapter.add(device.getName() + "\n" + device.getAddress());
                    Thread novocliente = new novoCliente(device);
                    novocliente.start();
                }
            }
        });
        // Register the BroadcastReceiver
        IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
        registerReceiver(global.getReceiver(), filter); // Don't forget to unregister during onDestroy
        global.getAdapter().startDiscovery();
    }
    else{   
            Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
            discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
            startActivity(discoverableIntent);
    }   
}

@Override
protected void onActivityResult (int requestCode, int resultCode, Intent data){
    super.onActivityResult(requestCode, resultCode, data);
    if(requestCode == REQUEST_ENABLE_BT){
        switch(resultCode){
        case RESULT_OK:     editText.setText("Bluetooth Ligado!");break;
        case RESULT_CANCELED:   editText.setText("Impossivel ligar Bluetooth!");finish();break;
        }   
    }
    if(requestCode == REQUEST_ENABLE_DISCBT){
        switch(resultCode){
            case RESULT_CANCELED:   editText.setText("Bluetooth não Detetável!");break;
            default :   editText.setText("Bluetooth Detetável por "+resultCode+" segundos!");
                        Thread servidor = new ServerSocket();
                        servidor.start();
            break;
        }   
    }
}

@Override
public void onStop() {
    super.onStop();  // Always call the superclass method first
    BluetoothAdapter.getDefaultAdapter().cancelDiscovery();
    BluetoothAdapter.getDefaultAdapter().disable(); 
}

@Override
public void onDestroy() {
    super.onDestroy();  // Always call the superclass method first
    unregisterReceiver(global.getReceiver()); // Don't forget to unregister during onDestroy    

}

私の変数 getEstado() は、アプリケーションがサーバーになるかクライアントになるかを示すブール値です。true の場合はサーバーです。そして問題はelseにあります。

誰でも私を助けてもらえますか?

4

2 に答える 2

1

有効にするコードは onResume() にあります。ダイアログが表示されると、アクティビティが一時停止され、(肯定的または否定的に) 閉じられると、アクティビティが再開されます。ダイアログが肯定的である場合、BT アダプターを有効にするのにも少し時間がかかるため、global.getAdapter().isEnabled() は引き続き false を返します。これが、ダイアログが繰り返し表示される理由です。

これを解決するには、別のトリガーを使用する必要があります (なぜ特に onResume を使用する必要があったのですか? onCreate に入れることができますか)、または状態を保存することができます。何かのようなもの:

private boolean requestedEnable = false;

@Override
public void onResume() {
    super.onResume();  // Always call the superclass method first
    if(!global.getEstado()){
        if (!global.getAdapter().isEnabled()) {
            if(!requestedEnable){
                requestedEnable = true;
                Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
                startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
            }
        }
        else
            editText.setText("Bluetooth Ligado!");
        global.setReceiver(new BroadcastReceiver() {
            public void onReceive(Context context, Intent intent) {
                String action = intent.getAction();
                // When discovery finds a device
                if (BluetoothDevice.ACTION_FOUND.equals(action)) {
                    // Get the BluetoothDevice object from the Intent
                    BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                    // Add the name and address to an array adapter to show in a ListView
                    mArrayAdapter.add(device.getName() + "\n" + device.getAddress());
                    Thread novocliente = new novoCliente(device);
                    novocliente.start();
                }
            }
        });
        // Register the BroadcastReceiver
        IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
        registerReceiver(global.getReceiver(), filter); // Don't forget to unregister during onDestroy
        global.getAdapter().startDiscovery();
    }
    else{   
            Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
            discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
            startActivity(discoverableIntent);
    }   
}

これがお役に立てば幸いです。

于 2013-12-29T20:44:08.377 に答える
0

Bluetooth チャットのサンプルをご覧ください。参考になるかもしれません

于 2013-09-03T06:00:37.363 に答える