0

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

我的代码:

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();
}
});
4

0 回答 0