Android 同一域的http和https


本文向大家介绍Android 同一域的http和https,包括了Android 同一域的http和https的使用技巧和注意事项,需要的朋友参考一下

示例

AndroidManifest.xml:

<activity android:name="com.example.MainActivity" >

    <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="http" />
        <data android:scheme="https" />
    
        <data android:host="www.example.com" />
    
        <data android:path="/" />
        <data android:path="/map" />
    
    </intent-filter>

</activity>

当用户单击以下任一链接时,这将启动MainActivity:

  • http://www.example.com/

  • https://www.example.com/

  • http://www.example.com/map

  • https://www.example.com/map