gpt4 book ai didi

java - 如何与 AlertDialog 内的适配器内的适配器内的 fragment 内的 AlertDialog View 进行交互?

转载 作者:行者123 更新时间:2023-12-02 03:15:41 25 4
gpt4 key购买 nike

标题几乎说明了一切。我需要关于如何做到这一点的建议。我可能只是将外部适配器添加为 AlertDialog 上的 View,以使其不那么复杂,但我仍然不知道如何与 交互来自内部适配器的 AlertDialog。我正在使用RecyclerView

这就是我的数据的样子。

"list_outer": [
{
"list_inner": [

]
}
]

例如,如果我从 list_inner 中选择某些内容,我想更新 AlertDialog 的 UI。

@Sreedev PR 建议我使用要在适配器构造函数 上传递的接口(interface)。问题是,目前,在 AlertDialog 到达内部适配器之前还有另一个步骤,因为我还没有将外部适配器添加为 View 。如果我确实使外部适配器只是一个 View,我仍然想不出一种干净的方法来将该值传递给 AlertDialog。重新显示 AlertDialog 可以吗?不会造成内存泄漏吗?如果可以的话我可能会这么做。

这就是我的应用程序的结构。

Fragment
|
AlertDialog
|
Adapter outer
|
Adapter inner

适配器内部需要能够通信或更改AlertDialog的UI

这是AlertDialog的布局。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:id="@+id/lytDlgAddItemToTicketMain"
android:focusableInTouchMode="true">

<android.support.constraint.Guideline
android:id="@+id/guideline5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_begin="16dp" />

<android.support.constraint.Guideline
android:id="@+id/guideline6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_end="16dp" />

<include
android:id="@+id/include3"
layout="@layout/dialog_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<android.support.v4.widget.NestedScrollView
android:layout_width="0dp"
android:layout_height="@dimen/DialogScrollViewHeight"
android:fillViewport="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/guideline6"
app:layout_constraintStart_toStartOf="@+id/guideline5"
app:layout_constraintTop_toBottomOf="@+id/include3">

<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<android.support.v7.widget.RecyclerView
android:id="@+id/lstAddItemToTicketAddOns"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:listitem="@layout/adptr_modifier">

</android.support.v7.widget.RecyclerView>

</android.support.constraint.ConstraintLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.constraint.ConstraintLayout>

这是它的代码。

View v = getLayoutInflater().inflate(R.layout.dialog, null);

lst.setLayoutManager(new LinearLayoutManager(ctx));

AdapterOuter adptr = new ModifierAdapter(ctx, arrayList);
lst.setAdapter(adptr);

更新

为了让它变得有点复杂,我放弃了 AlertDialog 东西并将其变成了 Fragment

最佳答案

AlertDialog转换为Fragment并应用@Sreedev P R的使用界面的建议后,我能够做到这一点工作。

关于java - 如何与 AlertDialog 内的适配器内的适配器内的 fragment 内的 AlertDialog View 进行交互?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56963298/

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