// 전화걸기 화면으로 이동시 아래 주석으로
// Intent intent = new Intent (Intent.ACTION_DIAL,Uri.parse("tel:"+tmpTel));
Intent intent = new Intent (Intent.ACTION_CALL,Uri.parse("tel:"+tmpTel));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.CALL_PRIVILEGED" />