又一个隐式intent

在string.xml中添加字符串资源

   拨打电话至本人

在布局文件中,添加拨打号码的按钮并把其放于相应位置

在竖直布局fragment_crime.xml中添加代码:
在水平布局fragment_crime.xml(land)当中添加代码:

在CrimeFragment当中对该按钮设置监听等操作

private Button mCallButton;
mCallButton = (Button)v.findViewById(R.id.crime_callButton);
        mCallButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Uri number = Uri.parse("tel:5551234");
                Intent i = new Intent(Intent.ACTION_DIAL, number);
                startActivity(i);
            }
        });

如下为实现效果

又一个隐式intent_第1张图片
QQ截图20170425103607.png
又一个隐式intent_第2张图片
QQ截图20170425103619.png

你可能感兴趣的:(又一个隐式intent)