【仅供内部供应商使用,不提供对外解答和培训】

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

1.在Android应用中启动:

//url"finereportv9://"  "com.fr.finereportv9://"
String url = "finereportv9://";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
//启动模式
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
startActivity(intent);

 

 

  • No labels