Click here to Skip to main content
16,012,468 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I have this code to connect bluetooth programmatically, but whenever i click it and open the bluetooth the app stopped unexpectedly. This is my code. Thanks!
Java
if (mBluetoothAdapter == null) {
			// prepare the alert box                  
            AlertDialog.Builder alertbox = new AlertDialog.Builder(this);
            alertbox.setTitle("Bluetooth permission request");
             
            // set the message to display
            alertbox.setMessage("DO you wish to open your bluetooth?");
                     
            // set a positive/yes button and create a listener                   
            alertbox.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
                 
                // do something when the button is clicked
                public void onClick(DialogInterface arg0, int arg1) {
                    //Toast.makeText(getApplicationContext(), "'Yes' button clicked", Toast.LENGTH_SHORT).show();
                	Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
                    discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
                    startActivity(discoverableIntent);
                }
            });
Posted
Updated 12-Jan-13 5:32am
v2

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900