I have a very specific problem. My app should implement calling emergency numbers (911, 112, etc.). But this must perform immediately, without pressing "Call" button. I've tried implement this via Intent:
Intent intent = new Intent(Intent.ACTION_DIAL,Uri.parse("tel:" + getString(R.string.emd_emergency_number)));
startActivity(intent);
Finally, I see only dialer screen with number placed in number section. Does anybody know, how to resolve this problem?