特定の番号を呼び出すためにこのコードを試してください
call.setOnClickListener(new View.OnClickListener() {//here call is the button
public void onClick(View v) {
try {
String Numb = "tel:" + repphone;// repphone is phonr num
Intent intent = new Intent(Intent.ACTION_CALL, Uri
.parse(Numb));
startActivity(intent);
} catch (Exception e) {
//Modules.showLongMessage(contact.this, e.getMessage());
}
}
});