我想在我的应用中添加一个深层链接,在点击链接时会打开本机应用。我使用Google firebase来实现它。我为它复制了必要的部分并将它们粘贴到我的代码中。但我不知道如何控制深层链接。除此之外,Google的代码示例中存在错误,我无法相信。我搜索了很多来解决这个问题,但我找不到有用的东西。
我将此添加到我的清单文件中:
<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:host="example.com"
android:scheme="https"/>
</intent-filter>
我在主要活动中创建了变量:
private GoogleApiClient mGoogleApiClient;
并将此代码添加到我的主要活动中:
在那里你还可以看到我不理解的两个错误。 此外,还有部分,我可以处理链接。不幸的是,我不知道该怎么做。
抱歉,我是Android Studio的新手。我需要一点时间来理解这些东西:)