拨打保存的联系人中的号码

时间:2012-08-14 09:52:02

标签: android android-intent phone-call

我想从保存的联系人中拨打一个号码。我有以下代码。它是否正确?

我的代码:

Button okButton=(Button)findViewById(R.id.ok_Button);
okButton.setOnCLickListener(new View.OnCLickListener() {
public void onCLick(View V){
Intent intent=new Intent(Intent.ACTION_DIAL,Uri.parse("Content//Contats/people");
setResult(RESULT_OK,result);
finish();
}
});

0 个答案:

没有答案