我如何重定向到手机中的应用程序?例如:位智,如果未安装它以重定向到市场
我知道如何在java中做到这一点:
try
{
String url = "waze://?q=Hawaii";
Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse( url ) );
startActivity( intent );
}
catch ( ActivityNotFoundException ex )
{
Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse(
"market://details?id=com.waze" ) );
startActivity(intent);
}
如何在 flex 4.6 中做到这一点?