piruin/quickaction

Not working with Dialog

siddhpuraamitr opened this issue · 0 comments

I want to show quickaction in DialogBox, where I have textview, when I click on that it, QuickAction should show me on top of TextView but instead it shows me at bottom of dialogbox.

         `tvPassphrase.setOnClickListener {
                var quickAction = QuickAction(activity, QuickAction.VERTICAL)
                quickAction.addActionItem(ActionItem(1,"Copy",null))
                quickAction.setOnActionItemClickListener(onActionItemClickListener)
                quickAction.show(it)
            }`