页面树结构
转至元数据结尾
转至元数据起始

       当需要在第三方原生APP中跳转到 Smartbi APP时,可以参考以下代码。

 

Andriod:    
       Intent intent = new Intent();
       intent.setClassName("cn.com.smartbi", "cn.com.smartbi.IntroduceActivity");
       Bundle bundle = new Bundle();
       bundle.putString("user", "demo");
       bundle.putString("password", "demo");
       intent.putExtras(bundle);
       startActivity(intent);

 

iOS:
       NSURL *url = [NSURL URLWithString:@"smartbi://login?user=demo&password=demo"];
       [[UIApplication sharedApplication] openURL:url];