其他分享
首页 > 其他分享> > Android之scheme使用

Android之scheme使用

作者:互联网

1.准备Html文件 - 将其拷贝进SDCard

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no,target-densitydpi = medium-dpi,viewport-fit=cover">
    <meta name="format-detection" content="telephone=no">
    <meta name="apple-touch-fullscreen" content="YES">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">    
</head>

<body>

    <!-- <a href="[scheme]://[host]/[path]?[query]">启动应用程序</a> -->
    <!--  scheme:判别启动的App -->
    <!--  host:主机                没有也可以 -->
    <!--  path:传值时必须的key      没有也可以 -->
    <!--  query:获取值的Key和Value  没有也可以 -->
    <a href="zkweb://zk/webjump?name=zhangsan&age=27">启动应用</a>
    <br/>

</body>

</html>

2.AndroidManifest.xml配置

<activity android:name="com.xxx.MainActivity"
          android:exported="true"
          android:launchMode="singleTask">
      <intent-filter>
         <action android:name="android.intent.action.MAIN" />
         <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    
      <!-- scheme设置 -->
      <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:scheme="zkweb"/>
      </intent-filter>
</activity>

3.打开SDCard中Html文件 - 启动应用 

//scheme
Intent intent = getIntent();
String action = intent.getAction();
if (Intent.ACTION_VIEW.equals(action)) {
   Uri uri = intent.getData();
   if (uri != null) {
       String name = uri.getQueryParameter("name");
       String age = uri.getQueryParameter("age");
       Log.e(getClass().getSimpleName(), "name=" + name + " age=" + age);
   }
}

日志输出:2022-02-22 16:43:12.540 24569-24569/com.xxx E/MainActivity: name=zhangsan age=27

4.实用说明

一般实际开发中配置 android:scheme名称 + 自定义数据格式数据,比如:

<a href="scheme名称://UrlEnCode(json数据)">测试跳转</a>

标签:name,age,uri,intent,使用,Android,scheme,String
来源: https://blog.csdn.net/zhukui66/article/details/123070227