如何从链接启动我的应用程序,它安装在设备中

时间:2014-09-22 07:02:39

标签: android url intentfilter

<data
  android:ssp="com.faithmusicmissions.cloudapp"
  android:path="/store/apps/details"
  android:host="play.google.com"
  android:scheme="https" />

使用此代码,我试图从Play商店链接打开我的应用程序,
https://play.google.com/store/apps/details?id=com.faithmusicmissions.cloudapp

此代码有效但问题是当我点击包含“play.google.com”的其他应用程序链接时,它还提供了打开我的应用程序的选项

e.g。我的电子邮件中有2个Play商店应用程序链接,从这些链接中我的应用程序链接之一是另一个应用程序链接
1. https://play.google.com/store/apps/details?id=com.faithmusicmissions.cloudapp
2. https://play.google.com/store/apps/details?id=com.tradiesfriend.tradie

当我点击两个链接时,它们会显示相同的选择器对话框以启动我的应用程序

如何在元素中使用我的应用程序链接https://play.google.com/store/apps/details?id=com.faithmusicmissions.cloudapp

1 个答案:

答案 0 :(得分:1)

    Manifest file 

     <activity
                android:name=".SplashScreenActivity"
                android:label="@string/app_name"
                android:screenOrientation="portrait" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

                    <category android:name="android.intent.category.LAUNCHER" >
                    </category>
                </intent-filter>
                <intent-filter android:label="@string/app_name" >
                    <action android:name="android.intent.action.VIEW" >
                    </action>

                    <data
                        android:host="xxx.com"
                        android:scheme="http" >
                    </data>

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

if want to access url 
In activty

try {
    Uri intentUri = getIntent().getData();
    Log.d(TAG, "Request intentUri: "+intentUri);

} catch (Exception e) {
    Log.i(TAG, "Request intentUri: " , e);
}