我正在尝试使用新的导航组件API v1.0.0-alpha05实现深层链接功能,但遇到了问题。
使用Android Studio 3.3 Canary 7
我的navigation_graph.xml的一部分
<fragment
android:id="@+id/noteDetailFragment"
android:name="com.myapp.notes.notedetail.NoteDetailFragment"
android:label="@string/label_note_detail"
tools:layout="@layout/note_detail_fragment">
<argument
android:name="noteId"
android:defaultValue="0"
app:argType="integer" />
<action
android:id="@+id/action_noteDetail_to_editNote"
app:destination="@id/editNoteFragment" />
<deepLink
android:id="@+id/noteDetailDeepLink"
app:uri="notesapp://notes/{noteId}" />
</fragment>
AndroidManifest.xml包含:
<activity android:name=".presentation.MainActivity">
<nav-graph android:value="@navigation/navigation_graph" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
我正在用
adb shell am start -a android.intent.action.VIEW -d "notesapp://notes/2" com.myapp.notes
测试我的深层链接noteId
或NoteDetailFragmentArgs.fromBundle(arguments).noteId
中都不存在arguments?.getInt("noteId", 0)
(两种情况下均返回0
的默认值)打印出 bundle 表明它在那里:
[{android-support-nav:controller:deepLinkIntent=Intent { act=android.intent.action.VIEW dat=notesapp://notes/2 flg=0x1000c000 pkg=com.mynotes.notes cmp=com.mynotes.notes.presentation.MainActivity }, noteId=2}]
如果Deeplink uri是
http://www.mynotes.com/notes/2
,则会观察到相同的问题深度链接时如何访问
noteId
?谢谢! 最佳答案
根据this issue,从深层链接解析的参数仅作为字符串添加到arguments
bundle 中。
因此,您应该通过arguments?.getString("noteId")?.toInt()
检索noteId,直到解决该问题为止。
关于android - 导航Arch组件: Passing placeholder param for deeplink,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52175818/