我想制作一个拨号器应用程序,它将从用户那里获取电话号码。并会拨打假设 *789*phone_number# 如何做到这一点。到目前为止,我已经这样做了...
Button call;
Intent callIntent = new Intent(Intent.ACTION_CALL);
String pnd;
call = (Button) findViewById(R.id.button5);
OnClickListener req = new OnClickListener() {
@Override
public void onClick(View p1) {
{
pnd = Uri.encode("#");
callIntent.setData(Uri.parse("tel:*2" + pnd));
startActivity(callIntent);
}
}
};
call.setOnClickListener(req);