我正在尝试使用新的导航组件 API v1.0.0-alpha05 实现深度链接功能,但遇到了问题。
使用 Android Studio 3.3 金丝雀 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
or (在两种情况下都返回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}]
如果深度链接 uri 为 http://www.mynotes.com/notes/2
如何访问noteId
when deeplinking?谢谢!