I want to make a call and that the person who receives it appears another number to the current one, now that I only make the call, I need to pass as a parameter a name or number so that it appears to the person receiving the call, currently this is the code
Intent intent = new Intent();
intent.setData(Uri.parse("tel:1645"));
intent.setAction(intent.ACTION_CALL);
startActivity(intent);