私は呼び出し元のアプリケーションを作成しています。actionView でデフォルトの番号を使用しようとしていますが、携帯電話番号を携帯電話の呼び出しボタンに渡したいと考えています。
これは私のコードです:-
public void onClick(View arg0) {
// this is real calling number
long mobile = "tel:9999999999";
// this is default number.and show in textfield of calling.
Uri uri = Uri.parse("tel:+919910699440");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
// here i want to pass real calling num in Button. so when i press the
//calling button . button will get mobile num but not show.
intent.setData(Uri.parse("tel:"+mobile));
startActivity(intent);
}
お時間をいただきありがとうございます。