私は、ユーザーが自分の電話を電話に使用するように頼む人に自分の電話を貸せるようにするアプリを持っています。EditText と Button で動作します。
通話コードは次のとおりです。
button1 = (Button)findViewById(R.id.button1);
setEditText1((EditText)findViewById(R.id.editText1));
button1.setOnClickListener(this); {}}
public void onClick(View arg0) {
EditText num=(EditText)findViewById(R.id.editText1);
String number = "tel:" +num.getText().toString().trim();
Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(number));
startActivity(callIntent);
}
私がやりたいことは、ゲストが電話を切ったときにパスワード アクティビティに移行するようにすることです。これどうやってするの?