我在运行应用程序时遇到以下错误。
我的应用程序代码是
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
final Button callButton = (Button) findViewById(R.id. callButton);
callButton.setOnClickListener(new Button.OnClickListener()
{
public void onClick(View v)
{
Intent callIntent = new Intent(Intent.CALL_ACTION,Uri.parse("tel:123456789"));
callIntent.setLaunchFlags(Intent.NEW_TASK_LAUNCH);
startActivity(callIntent);
}
});
}
我面临的问题是
CALL_ACTION
和NEW_TASK_LAUNCH
给我一个错误,通知我它们不是字段。谁能解决这个问题? 最佳答案
您只需写错了,显然,这不是一个字段。您没有在IDE中收到错误消息吗? CALL_ACTIVITY
应该是ACTION_CALL
,而NEW_TASK_LAUNCH
应该是FLAG_ACTIVITY_NEW_TASK
。请先阅读Documentation。