我正在尝试使用新的Navigation Component 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
)
打印出捆绑包表明它在那里:
[{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
?谢谢!
答案 0 :(得分:4)
根据this issue,从深层链接解析的参数仅作为字符串添加到arguments
捆绑包中。
因此,您应该通过arguments?.getString("noteId")?.toInt()
检索noteId,直到解决该问题为止。
答案 1 :(得分:1)
该问题已在android.arch.navigation 1.0.0-alpha09中修复。
错误修复
现在可以从深层链接中将参数正确解析为正确的argType,而不是始终作为字符串b/110273284
Arch Components发行说明:https://developer.android.com/jetpack/docs/release-notes
答案 2 :(得分:0)
Android导航库将始终将占位符参数解析为字符串,除非类型在Nav Graph中明确声明为参数。
对于{noteId}
的占位符,通过将参数声明为整数来将传递的参数作为整数接收。
<argument
android:name="id"
app:argType="integer"
android:defaultValue="0" />