Android Studio 第六十四期 - Android業務組件化之URL Scheme使用

    什麼是 URL Scheme?

    android中的scheme是一種頁面內跳轉協議,是一種很是好的實現機制,經過定義本身的scheme協議,能夠很是方便跳轉app中的各個頁面;經過scheme協議,服務器能夠定製化告訴App跳轉那個頁面,能夠經過通知欄消息定製化跳轉頁面,能夠經過H5頁面跳轉頁面等。html

    URL Scheme應用場景:

    客戶端應用能夠向操做系統註冊一個 URL scheme,該 scheme 用於從瀏覽器或其餘應用中啓動本應用。經過指定的 URL 字段,能夠讓應用在被調起後直接打開某些特定頁面,好比商品詳情頁、活動詳情頁等等。也能夠執行某些指定動做,如完成支付等。也能夠在應用內經過 html 頁來直接調用顯示 app 內的某個頁面。綜上URL Scheme使用場景大體分如下幾種:android

  • 服務器下發跳轉路徑,客戶端根據服務器下發跳轉路徑跳轉相應的頁面瀏覽器

  • H5頁面點擊錨點,根據錨點具體跳轉路徑APP端跳轉具體的頁面服務器

  • APP端收到服務器端下發的PUSH通知欄消息,根據消息的點擊跳轉路徑跳轉相關頁面app

  • APP根據URL跳轉到另一個APP指定頁面ide

    URL Scheme協議格式:

   先來個完整的URL Scheme協議格式:url

xl://goods:8888/goodsDetail?goodsId=10011002

經過上面的路徑 Scheme、Host、port、path、query所有包含,基本上平時使用路徑就是這樣子的。spa

  • xl表明該Scheme 協議名稱操作系統

  • goods表明Scheme做用於哪一個地址域orm

  • goodsDetail表明Scheme指定的頁面

  • goodsId表明傳遞的參數

  • 8888表明該路徑的端口號

    URL Scheme如何使用:

 1.)在AndroidManifest.xml中對<activity />標籤增長<intent-filter />設置Scheme


    <activity android:name=".GoodsDetailActivity"
            android:theme="@style/AppTheme">
            <!--要想在別的App上能成功調起App,必須添加intent過濾器-->
            <intent-filter>
                <!--協議部分,隨便設置-->
                <data android:scheme="xl" android:host="goods" android:path="/goodsDetail" android:port="8888"/>
                <!--下面這幾行也必須得設置-->
                <category android:name="android.intent.category.DEFAULT"/>
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.BROWSABLE"/>
            </intent-filter>
        </activity>


 2.)獲取Scheme跳轉的參數


Uri uri = getIntent().getData();if (uri != null) {    // 完整的url信息
    String url = uri.toString();
    Log.e(TAG, "url: " + uri);    // scheme部分
    String scheme = uri.getScheme();
    Log.e(TAG, "scheme: " + scheme);    // host部分
    String host = uri.getHost();
    Log.e(TAG, "host: " + host);    //port部分
    int port = uri.getPort();
    Log.e(TAG, "host: " + port);    // 訪問路勁
    String path = uri.getPath();
    Log.e(TAG, "path: " + path);
    List<String> pathSegments = uri.getPathSegments();    // Query部分
    String query = uri.getQuery();
    Log.e(TAG, "query: " + query);    //獲取指定參數值
    String goodsId = uri.getQueryParameter("goodsId");
    Log.e(TAG, "goodsId: " + goodsId);
}


3.)調用方式

網頁上

<a href="xl://goods:8888/goodsDetail?goodsId=10011002">打開商品詳情</a>

原生調用

  Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("xl://goods:8888/goodsDetail?goodsId=10011002"));
  startActivity(intent);

 4.)如何判斷一個Scheme是否有效


PackageManager packageManager = getPackageManager();
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("xl://goods:8888/goodsDetail?goodsId=10011002"));
List<ResolveInfo> activities = packageManager.queryIntentActivities(intent, 0);boolean isValid = !activities.isEmpty();if (isValid) {
    startActivity(intent);
}


    總結:

   Scheme的基本使用也就這麼多了,其餘的使用在之後用到的時候再作總結。

    QQ截圖20180626100615.png

相關文章
相關標籤/搜索