电话意图不起作用 - 小米手机

时间:2018-01-20 21:49:19

标签: java android android-intent

当你点击联系号码布局时,它应该拨打一个电话,但是当我点击时,我得到一个空白屏幕一秒钟然后屏幕进入rootview。日志正确显示联系人号码,我已添加权限。

我正在使用xiaomi redmi 4手机,双卡。如果我将意图更改为Intent.ACTION_DIAL,则拨打正常但我想拨打电话。

权限

<uses-permission android:name="android.permission.CALL_PHONE" />

致电意向代码

 @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View rootView = inflater.inflate(R.layout.fragment_detail, container, false);

    initializeDetailScreen(rootView);
    setValuesDetailScreen();

    mScrollView.setFillViewport(true);

    mTapToCallLayout.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {

            Intent callIntent = new Intent(Intent.ACTION_CALL);
            String contactNumber = "";               
            try {
                contactNumber =  (String) mContactJSONObj.get(Constants.CONTACT_TEL);

            } catch (JSONException e) {
                Log.v(LOG_TAG,"There is an error. ");
            }
            Log.v(LOG_TAG,"Contact number is: "+contactNumber);
            callIntent.setData(Uri.parse("tel:" + contactNumber));
            startActivity(callIntent);
        }
    });
    return rootView;
}

1 个答案:

答案 0 :(得分:1)

您的目标是23的SDK,这需要您实现运行时权限才能成功使用Intent.ACTION_CALL。

https://developer.android.com/training/permissions/requesting.html