How to make a phone call in android and come back to my activity when the call is done?

后端 未结 20 2461
北恋
北恋 2020-11-22 12:59

I am launching an activity to make a phone call, but when I pressed the \'end call\' button, it does not go back to my activity. Can you please tell me how can I launch a c

20条回答
  •  傲寒
    傲寒 (楼主)
    2020-11-22 13:31

    This is solution from my point of view:

    ok.setOnClickListener(this);
    @Override
    public void onClick(View view) {
        if(view == ok){
            Intent intent = new Intent(Intent.ACTION_CALL);
            intent.setData(Uri.parse("tel:" + num));
            activity.startActivity(intent);
    
        }
    

    Of course in Activity (class) definition you have to implement View.OnClickListener .

提交回复
热议问题