我正在尝试从我的应用程序中打开电子邮件意图。它给出了FLAG_ACTIVITY_NEW_TASK的错误。
所以我添加了这个标志,但我的应用程序仍在崩溃而没有任何异常。
@Test(groups = {"eventAdmin"}, dataProvider = "EventAdminProvider",
dataProviderClass = EventAdminCurationDataproviderClass.class)
public void EventCurationclearFilter(String eventName) throws Exception {
/* Your test code using `eventName` here. */
}
@AfterMethod(groups = {"eventAdmin"})
public void teardown(Object[] parameters) throws Exception {
String eventName = (String) parameters[0];
/* Your teardown code using `eventName` here. */
}
它在mainActivity中的一个新项目中工作正常,这会为用户打开一个选择框,他会选择要用来发送电子邮件的应用程序但是当我从另一个活动中打开它时它不起作用