Using on attach on dialog does not let the override method on fragment get called

I am using a dialog that has a click, I want to save the listener of click on “onAttach” from configuration changes, the problem is that it prevents the override method of listener on my fragment to get called. When i click the button the method calls onAttach click, the same thing when the config changes.

I dont want to do it using viewmodel, I just don’t know how to fix this, if I remove the click inside the onAttach, still it wont work. Here is my code:

class RedeemGiftCardDialog: DialogFragment() {

    private lateinit var binding: DialogRedeemGiftCardBinding
    var listener: RedeemGiftCardDialogListener? = null

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setStyle(STYLE_NORMAL, R.style.Theme_AppCompat_Light_Dialog_Alert)
    }

    override fun onCreateView(
        inflater: LayoutInflater,
        container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View {
        binding = inflate(inflater, R.layout.dialog_redeem_gift_card)
        dialog?.window?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
        return binding.root
    }


    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        binding.textFieldCode.editText?.showKeyboard()

        binding.buttonContinue.setOnClickListener {
            val text = binding.textFieldCode.editText?.text.toString()
            if (text.isBlank() || text.length < 6) {
                Toast.makeText(context, "Shënoni kodin për të vazhduar!", Toast.LENGTH_SHORT).show()
                return@setOnClickListener
            }
            isLoading(true)
            listener?.onRedeemClicked(text)
        }
    }

    fun isLoading(loading: Boolean) {
        binding.buttonContinue.isEnabled = !loading
        binding.progressBar.isVisible = loading
        binding.buttonContinue.text = if (loading) "" else "Aktivizo"
        binding.buttonContinue.hideKeyboard()
    }
}

interface RedeemGiftCardDialogListener {
    fun onRedeemClicked(code: String)
}

//The fragment:


@AndroidEntryPoint
class ProfileFragment : BaseFragment(), ResetBottomSheetListener, RedeemGiftCardDialogListener {
 binding.redeemGiftCardLayout.setOnClickListener {
            val fm = activity?.supportFragmentManager ?: return@setOnClickListener
            val redeemDialog = RedeemGiftCardDialog()
            redeemDialog.listener = this
            if (!redeemDialog.isAdded) {
                redeemDialog.show(fm, redeemDialog.tag)
            }
        }

}

  override fun onRedeemClicked(code: String) {
        Log.d("Dialog","clicked")
       membershipViewModel.activateGift(code)
    }

I am not sure I understood 100% the question. I think you problem is that when the fragments are recreated after config changes the listener is not set in the dialog fragment, and that’s why the click listener doesn’t work.

Instead of setting the listener, try using fragment result listener as explained in the docs, it will work even after config change:

https://developer.android.com/guide/fragments/communicate#fragment-result

4

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật