我是这方面的初学者,我正在努力让它发挥作用。
按下按钮时,我只想打开拨号器并自动输入指定的号码。
到目前为止,我已经尝试了以下方法:
Button btn_call_us = (Button) findViewById(R.id.btn_call_us);
btn_call_us.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:00000000"));
startActivity(callIntent);
}
});
我也试过:
Button btn_call_us = (Button) findViewById(R.id.btn_call_us);
btn_call_us.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
String phoneno="00000000";
Intent i=new Intent(Intent.ACTION_CALL,Uri.parse(phoneno));
startActivity(i);
}
});
我已将权限 ACTION_CALL 添加到清单中。
每当我单击“呼叫”按钮时,应用程序强制关闭。
任何帮助将不胜感激。
谢谢!