9

我在我的应用程序中使用 Jetpack Navigation,它有一个活动和两个片段(片段 A 也是主片段,片段 B 可以从片段 A 导航)。

如下所示intent-filter添加了一个可以接受纯文本的内容。MainActivity

 <activity android:name=".MainActivity"
        android:screenOrientation="portrait">

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>

        <intent-filter>
            <action android:name="android.intent.action.SEND"/>
            <category android:name="android.intent.category.DEFAULT"/>
            <data android:mimeType="@string/text_mime_type_text_plain"/>
        </intent-filter>
    </activity>

当用户从 Android 共享表中选择我的应用程序时,最终目标是将接收到的数据从 Intent 传递到 Fragment B。目前,我在 Fragment A(Home Fragment)中接收 Intent,然后使用NavController导航到 Fragment B使用下面的代码。

  private fun checkReceivedIntent() {
    val receivedUrlIntent = activity?.intent
    val intentAction = receivedUrlIntent?.action
    val intentType = receivedUrlIntent?.type

    if (intentAction == Intent.ACTION_SEND && intentType != null) {
        if (intentType == getString(R.string.text_mime_type_text_plain) ) {
            val receivedText = receivedUrlIntent.getStringExtra(Intent.EXTRA_TEXT)
            val action = FragmentADirections.actionFragmentAToFragmentB(receivedText)
            findNavController().navigate(action)
        }
    }
}

问题是,当片段 B 打开时,按下工具栏的后退按钮或后退箭头(即使多次按下),片段 A 不会出现,而片段 B 会继续重新出现。

我不知道我错过了什么。当用户从另一个应用程序内的共享表打开应用程序时,这是打开特定片段的正确方法吗?

编辑

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true">

<fragment
    android:id="@+id/navHostFragment"
    android:name="androidx.navigation.fragment.NavHostFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:defaultNavHost="true"
    app:navGraph="@navigation/nav_graph" />

<com.google.android.material.bottomappbar.BottomAppBar
    android:id="@+id/bottomAppBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    app:fabCradleMargin="8dp"

    />

<com.google.android.material.floatingactionbutton.FloatingActionButton
    android:id="@+id/fabMainActivity"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_add"
    app:layout_anchor="@id/bottomAppBar" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>
4

1 回答 1

4

为什么Fragment一旦收到Intent您的Activity. 只是代替在 xml中定义Fragment,或者作为一个startDestination你可以简单地执行切换到FragmentB

Activity

       Navigation
            .findNavController(binding.root)
            .navigate(
                R.id.navigation_from_intent_actions, bundle,
                NavOptions.Builder()
                    .setIntentExtra(extras)
                    .build()
            )

更新

要返回上一个片段,您可以轻松地Fragment从 the获取FragmentManager(它不会被杀死,因为它是您的 home Fragment)。您可以通过以下方式执行此操作:

  private fun returnWithName() {
      val name = name_input.text.toString()

      (targetFragment as? FragmentA)?.setName(name)
      activity?.supportFragmentManager?
           .popBackStackImmediate()
  }

稍后只需检查更新的结果FragmentB。您Fragment需要导航到的位置。

笔记。还有另一种与 Shared 共享数据的方法ViewModel。但是,您需要将结果从ViewModel回传输到FragmentA. 然后检查新的交易参数。这里也有描述

于 2019-11-08T20:51:04.520 回答