我可以用这段代码调用一些:
private void makePhoneCall(String number) {
try {
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + number));``
startActivity(intent);
} catch (Exception e) {
e.printStackTrace();
}
但是当有人愿意跟注时,我想玩一些东西。我能怎么做 ?