从电子邮件启动Android应用

时间:2016-05-17 07:10:23

标签: launching

如果应用程序未安装,则安装应用程序打开应用程序,然后在浏览器中打开URL。当用户看到他/她的电子邮件并点击我们发送的电子邮件时。提前致谢

1 个答案:

答案 0 :(得分:0)

<activity android:name=".SampleActivity"
        android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
        android:exported="true">
        <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" />
        </intent-filter>
    </activity>