Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I create an application with two activities, in

  1. first activity setup the bluetooth device name, admin number and
  2. in second activity apk wait for call.

    • I have broadcast receiver for detect incomming call and output to bluetooth.
    • I call sendBt(); from receiver, work fine.
    • But I can not exit and close my apk, I get a crash.

When I put something onPause onStop not work receiver because when i have call my activity (is not visible) stop from detect call receiver.

How i fix it? I look LogCat for errors but nothing. I try now onBackPress system.exit(0); and exit but i read is not good idea.

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.act2);

    PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
    wl = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, "Detect call bluetooth");


    SharedPreferences preferences = getSharedPreferences("datadetectcallbt" , MODE_PRIVATE);
        strDevName = preferences.getString("DevName",strDevNamed); 
        strAdmin = preferences.getString("admin",strAdmind); 
        admin_en = preferences.getBoolean("adm_st",admin_en);
        findBT();
}
protected void onStart() {
  super.onStart();   
  try
  {         
      openBT();                            
  }
  catch (IOException ex) { }         
}

void findBT() {
    mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    if(mBluetoothAdapter == null) {

    }

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

    Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();
    if(pairedDevices.size() > 0){
        for(BluetoothDevice device : pairedDevices) {
            if(device.getName().equals(strDevName)) {
                mmDevice = device;
                break;
            }
        }
    }
}

void openBT() throws IOException
{
    UUID uuid = UUID.fromString("00001101-0000-1000-8000-00805f9b34fb"); //Standard SerialPortService ID
    mmSocket = mmDevice.createRfcommSocketToServiceRecord(uuid);       
    mmSocket.connect();
    mmOutputStream = mmSocket.getOutputStream();
    mmInputStream = mmSocket.getInputStream();
}

public static void sendDataBT( String msg ) throws IOException{
    msg += "\n";
    if(msg.indexOf(strAdmin)>0 ){//   && (admin_en==true)
       String data="1";
       mmOutputStream.write(data.getBytes());

    }
}

public void onResume() {
   super.onResume();
   registerReceiver(new IncomingCallReceiver(), new IntentFilter("android.intent.action.PHONE_STATE"));
   wl.acquire();
}

protected void onPause() {
    super.onPause() ;
}

public void onBackPressed() {
system.exit(0);
}

protected void onStop() {
   super.onStop();
}

@Override
protected void onDestroy() {//android has killed this activity
     super.onDestroy();
     unregisterReceiver(new IncomingCallReceiver());
    try {
    mmOutputStream.close();
        mmInputStream.close();
        mmSocket.close();
    } catch (IOException e) {
    e.printStackTrace();
    }
    wl.release();
    finish();
}
}

public class IncomingCallReceiver extends BroadcastReceiver {
public String admin="xxxx......";
    @Override
    public void onReceive(Context context, Intent intent) {
            Bundle bundle = intent.getExtras();
            if(null == bundle)
                    return;

            Log.i("IncomingCallReceiver",bundle.toString());
            String state = bundle.getString(TelephonyManager.EXTRA_STATE);
            Log.i("IncomingCallReceiver","State: "+ state);
            if(state.equalsIgnoreCase(TelephonyManager.EXTRA_STATE_RINGING)){
                    String phonenumber = bundle.getString(TelephonyManager.EXTRA_INCOMING_NUMBER);
                    Log.i("IncomingCallReceiver","Incomng Number: " + phonenumber);
                    String info = "Detect call... \nIncoming number: " + phonenumber;
                    Toast.makeText(context, info, Toast.LENGTH_LONG).show();
                try {
                    Activity2.sendDataBT(info);
                 } catch (IOException e) {
                    e.printStackTrace();
                }
               }
          }         
    }
share|improve this question
5  
Do you know how irritating it is to see so much code. And so much comments and so many empty lines. Its time you clean it up and only put relevant lines of code. You cant put your entire class. Obviously for this issue you cant suspect every line of your code. – Siddharth Feb 3 at 13:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.