保存した連絡先から番号をダイヤルしたいのですが、次のコードがあります。それは正しいですか?
私のコード:
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();
}
});