Dialogplus Versions Save

Advanced dialog solution for android

1.11

8 years ago
  • padding top issue fix for utils
  • setContentBackgroundResource added, as default white
  • setOverlayBackgroundResource added, as default semi-transparent black
  • ListViewHolder itemclick position will return 0 when there is header (it was 1)

v1.10

8 years ago
  • Header/Footer misplace fix
  • ListHolder width fix

v1.9

8 years ago
  • NPE fix

v1.8

8 years ago
  • Set content width and height manually
.setContentWidth(800)
.setContentHeight(ViewGroup.LayoutParams.WRAP_CONTENT)
  • Set default height when expand feature is enabled
.setExpanded(true, 100)
  • Major change for the builder class. DialogPlus must use new static factory method to initialize.
DialogPlus dialog = DialogPlus.newDialog(context) ...
  • Major refactoring

v1.7

8 years ago
  • Expand feature added similar to Android L share dialog.
.setExpanded(true);    //this will enable it
  • ScreenType removed
  • Gravity now uses android gravity class.

v1.6

8 years ago
  • Outmost margin option is added, thus you can move dialog under toolbar or move it above your footer etc.

v1.5-release

9 years ago
  • getHeaderView() added
  • getFooterView() added
  • getHolderView() added
  • some bug fixes
  • OnCancelListener added
  • OnDismissListener added
  • OnBackPressListener added

v1.2

9 years ago
  • BasicHolder is removed
  • ViewHolder added in order to add custom view.
  • Top, Center animations are added
  • Center option is added
  • Set margin option is added
  • Set animation option is added
  • OnClickListener option is added

v1.1

9 years ago
  • OnItemClickListener modified, it contains DialogPlus object now.
  • Backpress issue is fixed, it will dismiss the dialog if the cancelable is true