gpt4 book ai didi

android - 来自通知的深度链接 - 如何通过后台堆栈传递数据?

转载 作者:行者123 更新时间:2023-12-03 17:11:33 25 4
gpt4 key购买 nike

在我的应用程序中,用户可以选择一个类别,然后在该类别中选择一个项目以最终查看项目详细信息。标准/正向流程是:

SelectCategoryFragment -> SelectItemFragment -> ViewItemDetailsFragment



在选择一个类别时, selectedCatId通过 Bundle 传递来自 SelectCategoryFragmentSelectItemFragment :
    NavController navController = Navigation.findNavController(v);
Bundle args = new Bundle();
args.putLong(SelectItemFragment.ARG_CATEGORY_ID, selectedCatId);
navController.navigate(R.id.action_nav_categories_to_items, args);
SelectItemFragment然后将使用 getArguments().getLong(ARG_CATEGORY_ID)值以查询和显示所选类别中的适当项目。

这很好用。但是我现在正在尝试在用户点击通知时实现深度链接,将他们直接跳转到 ViewItemDetailsFragment带有一个可以将它们带到 SelectItemFragment 的 backstack ,然后 SelectCategoryFragment .

我的问题是,如前所述, SelectItemFragment取决于 ARG_CATEGORY_ID传递给它的参数以检索/显示其数据。我已阅读 deep linkingnested navigation graphs ,但真的不知道如何通过 ARG_CATEGORY_ID具有深度链接/后台堆栈。

有没有一种整洁的方法可以从 ViewItemDetailsFragment 传递数据?至 SelectItemFragment当用户按下回?

最佳答案

TLDR : 使用嵌套图可以解决问题。引用这个article更多细节。

更长的答案

让我们定义简单 fragment FragmentRed , FragmentGreenFragmentBlue谁用相应的背景颜色膨胀简单的布局:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:background="@android:color/holo_red_dark">

<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

并像这样声明 fragment 类:
class FragmentRed : Fragment() {

private val args: FragmentRedArgs by navArgs()

override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
val view = inflater.inflate(R.layout.red, container, false)
view.findViewById<TextView>(R.id.textView).text = args.foo.toString()
return view
}
}
FragmentGreenFragmentBlue是复制粘贴,但用相应的彩色文本替换所有彩色文本,即 FragmentRedArgs -> FragmentBlueArgs , R.layout.red -> R.layout.blue .

让我们这样声明主要 Activity 布局:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:id="@+id/content"
android:layout_height="match_parent">

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

在哪里 main_graph是:
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_graph"
app:startDestination="@id/fragment_red">

<fragment
android:id="@+id/fragment_red"
android:name="com.playground.FragmentRed">
<argument
android:name="foo"
android:defaultValue="0"
app:argType="integer" />
<action
android:id="@+id/action_fragment_red_to_fragment_green"
app:destination="@id/fragment_green" />
</fragment>

<navigation
android:id="@+id/secondLevel"
app:startDestination="@id/fragment_green">

<fragment
android:id="@+id/fragment_green"
android:name="com.playground.FragmentGreen">
<argument
android:name="bar"
android:defaultValue="0"
app:argType="integer" />
<action
android:id="@+id/action_fragment_green_to_fragment_blue"
app:destination="@id/fragment_blue" />
</fragment>

<fragment
android:id="@+id/fragment_blue"
android:name="com.playground.FragmentBlue">
<argument
android:name="zar"
android:defaultValue="0"
app:argType="integer" />
</fragment>
</navigation>

</navigation>

现在里面 MainActivity让我们生成一个新通知,为每个 fragment 传递参数:“foo”(红色)- 1、“bar”(绿色)- 2、“zar”(蓝色)- 3。

我们的期望是点击通知以打开带有文本 3 的蓝屏,在返回点击时会看到带有 2 的绿屏,再次点击应该会在屏幕上显示带有 1 的红屏:
class MainActivity : AppCompatActivity() {

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)

val navController = findNavController(R.id.nav_host_fragment)
val pendingIntent = navController.createDeepLink()
.setGraph(R.navigation.main_graph)
.setDestination(R.id.fragment_blue)
.setArguments(bundleOf("foo" to 1, "bar" to 2, "zar" to 3))
.createPendingIntent()

createNotificationChannel() // outside of the scope of this answer
val builder = NotificationCompat.Builder(this, "my_channel")
.setContentTitle("title")
.setContentText("content text")
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setContentIntent(pendingIntent)
.setSmallIcon(R.drawable.android)
.setAutoCancel(true)
.setChannelId("channelId")

with(NotificationManagerCompat.from(this)) {
notify(100, builder.build())
}
}

}

这是设备上的实际行为:

enter image description here

关于android - 来自通知的深度链接 - 如何通过后台堆栈传递数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62393685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com