How to get back to initial app where the implicit intent is started?
问题 I have an app which contain some buttons.some of these buttons open specific URL/address by android internet browser and close my app(implicit intent). but i want this, when user close internet browser android redirect user to my app automatically. my button code is: case R.id.btnB: Uri myurl1 = Uri.parse("http://www.justandroid.com/"); Intent intent_B = new Intent(Intent.ACTION_VIEW, myurl1 ); startActivityForResult(intent_B,8); break; case R.id.btnC: Uri myurl2 = Uri.parse("http://www