Android 網頁打開app(或者打開指定頁面)而且接收參數

網頁打開app
現實描述場景:
一、短信通知中通知內容,好比信息中一個諮詢詳情,流程步驟,信息中的地址打開的是一個網頁,網頁打開就指定app或者app中的指定頁面
html代碼html

  <html>  
      
        <head>  
      
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
          
            <title>Insert title here</title>  
      
        </head>  
      
        <body>  
      
            <a href="m://任意規定,同intent-filter一致便可/?text=android">打開app</a><br/>  
      
        </body>  
      
    </html>  

而後再app的AndroidManifest.xml中配置代碼,若是隻想打開app即在app的啓動頁面便可,若是想要再指定頁面打開而且接收參數,再對應的activity中配置intent-filterandroid

<activity android:name="指定頁面">
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data
                    android:host="任意規定,同intent-filter一致便可"
                    android:scheme="m" />
            </intent-filter>
        </activity>

接收參數操做再app的onCreate中app

 //測試獲取網頁打開app傳遞的參數
        Uri uri=getIntent().getData();
        if (uri!=null){
            //獲取傳遞的參數
            Toast.makeText(mContext, "網頁傳遞的參數:"+uri.getQueryParameter("text"), Toast.LENGTH_SHORT).show();
            Log.e("qzinfodetails","-------------網頁傳遞的參數:"+ uri.getQueryParameter("text"));
        }
    }

這樣便可打開指定頁面而且接收參數測試

相關文章
相關標籤/搜索