quickaction icon indicating copy to clipboard operation
quickaction copied to clipboard

Not working with Dialog

Open siddhpuraamitr opened this issue 5 years ago • 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)
            }`

siddhpuraamitr avatar Jun 18 '20 03:06 siddhpuraamitr