android从app隐藏号码拨打电话

时间:2014-07-12 10:47:23

标签: android android-intent

我在我的应用程序中,我想通过点击按钮来呼叫一个人。

iv_call.setOnClickListener(new OnClickListener() {          
        @Override
        public void onClick(View arg0) {
            Intent callIntent = new Intent(Intent.ACTION_CALL);
            callIntent.setData(Uri.parse("tel:593987424"));
            startActivity(callIntent);
        }
    });

当用户点击按钮时,android OS开始通话。我可以隐藏电话号码,因此用户不应该看到号码吗?

enter image description here

1 个答案:

答案 0 :(得分:2)

不,你不能。它是另一个应用程序,它决定是否显示节目号。