H5唤醒APP

/**
 *  首先:
 *  你需要一个URL Schemes
 *  [share]://[host]/[path]?[query]
 *  scheme:判别启动的App
 *  host:适当记述
 *  path:传值时必须的key 没有也可以
 *  query:获取值的Key和Value  没有也可以
 * */

在AndroidMainfest中配置,找到你想要唤醒的App页面,在下面添加


    
    
    
        

        
    
    
    
        
        
        
        
        
        
    

在对应Activity页面的onCreate()方法中获取对应的key值:

Intent intent = getIntent();
Uri uri = intent.getData();
if (uri != null) {
    String roomid = uri.getQueryParameter("roomid");
    Log.i("roomid",roomid);
}

这样就ok了

你可能感兴趣的:(Android,Studio)