dialogplus
dialogplus copied to clipboard
Advanced dialog solution for android
What about creating a dialog from another dialog (Multi Dialog), without dismiss the first one ?
Finally I have some time to improve this library. Since there was a huge break for this library, I'll collect major/minor issues under this one as tasks, the way I...
I was messing around with DialogPlus, and I came accoss this "issue". I'm not able to show a child dialog from parent dialog. Here's the code: ``` final ArrayAdapter childAdapter...
Is it possible to customize the popover by giving it the border radius ? Do that library have long press(press on a button during 2 seconds for exapmle) feature before...
How to restrict the DialogPlus dialog to move up when soft keyboard is opened in android
In my case, i am using this dialogPlus as dropDown notification from gravity TOP with time stamp of 2sec . when i am writing something and this dialog will appear...
Main activity contains below code ``` ProductRegistrationDetails productRegistrationDetails = new ProductRegistrationDetails(); productRegistrationDetails.setActiveRegistrationFound(isActiveRegistrationFound); productRegistrationDetails.setNumberOfFreebies(numberOfFreebies); productRegistrationDetails.setNumberOfRegistrationBasedAdsPerMonth(numberOfRegistrationBasedAdsPerMonth); productRegistrationDetails.setRemainingProduct(remainingProduct); productRegistrationDetails.setTrialEnabled(isTrialEnabled); productRegistrationDetails.setTrialExpired(isTrialExpired); productRegistrationDetails.setUpgradedPackageIsUsing(isUpgradedPackageIsUsing); ProductRegistrationAdapter adapter = new ProductRegistrationAdapter(context, productRegistrationDetails); DialogPlus dialogPlus = DialogPlus.newDialog(this) .setAdapter(adapter) .setContentHolder(new...
Can I display more than one dialog at the same time?
Is it possible to change dynamically a height of a dialog ?
I want to change the height of dialog before i will show.