I am trying to come back to my activity once the outgoing call is ended.I found the similar questions and tried implementing the code but the problem is oncallstatechange() method,the state is 0 all the time,thus once the call is made it is getting disconnected as the code is directly getting into if loop where condition is state-idle and coming back to my app.though the problem is solved,I am getting into my activity back ,but the call is immediately getting hanged up.kindly help.thanks in advance.
//inside on create...
callListener = new EndCallListener();
mTM = (TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE);
//calling on item click
public void onItemClick(AdapterView<?> av, View v, int arg2, long arg3)
{
// TODO Auto-generated method stub
LinearLayout ll = (LinearLayout) ((LinearLayout) v).getChildAt(0);
LinearLayout lc = (LinearLayout) ll.getChildAt(0);
TextView tv = (TextView) lc.getChildAt(3);
String st = tv.getText().toString();//contains phone number
mTM.listen(callListener, PhoneStateListener.LISTEN_CALL_STATE);
Intent i=new Intent(android.content.Intent.ACTION_CALL,Uri.parse("tel:"+st));
startActivity(i);
//finish();
}// onitemclick
//this is where I am calling my activity back..
class EndCallListener extends PhoneStateListener {
@Override
state-->0 public void onCallStateChanged(int state, String incomingNumber) {
super.onCallStateChanged(state, incomingNumber);
if(TelephonyManager.CALL_STATE_RINGING == state) {
}
if(TelephonyManager.CALL_STATE_OFFHOOK == state) {
//wait for phone to go offhook (probably set a boolean flag) so you know your app initiated the call.
}
if(TelephonyManager.CALL_STATE_IDLE == state) {
//when this state occurs, and your flag is set, restart your app
startActivity(new Intent(recentcalling.this,recentcalling.class));
}
}
}