DialogPlus provides android L dialog animation

DialogPlus provides 3 position:

Top : Dialog will appear at top with animation
Center : Dialog will appear in the center with animation
Bottom : Dialog will appear at the bottom of the screen with animation
DialogPlus provides 3 content types:

ListHolder : Items will be shown in a listview
GridHolder : Items will be shown in a gridview
ViewHolder : Your customized view will be shown in the content
Gradle

compile 'com.orhanobut:dialogplus:1.11@aar'
Usage

Use the builder to create the dialog.

Basic usage

DialogPlus dialog = DialogPlus.newDialog(this)
  .setAdapter(adapter)
  .setOnItemClickListener(new OnItemClickListener() {
    @Override
    public void onItemClick(DialogPlus dialog, Object item, View view, int position) {
    }
  })
  .setExpanded(true)  // This will enable the expand feature, (similar to android L share dialog)
  .create();
dialog.show();
More options

Enable expand animation same as Android L share dialog

.setExpanded(true) // default is false, only works for grid and list
Set expand animation default height

.setExpanded(true, 300)
Select different holder.

Use ListView as content holder, note that this is default content type.
setContentHolder(new ListHolder())
Use ViewHolder as content holder if you want to use a custom view for your dialog. Pass resource id
.setContentHolder(new ViewHolder(R.layout.content))
or pass view itself

.setContentHolder(new ViewHolder(view))
Use GridHolder if you want to use GridView for the dialog. You must set column number.
.setContentHolder(new GridHolder(COLUMN_NUMBER))
Get the holder view, ListView, GridView or your custom view
View view = dialogPlus.getHolderView();
Set dialog position. BOTTOM (default), TOP or CENTER. You can also combine other Gravity options.
.setGravity(Gravity.CENTER)
Define if the dialog is cancelable and should be closed when back pressed or out of dialog is clicked
.setCancelable(true)
Set Adapter, this adapter will be used to fill the content for ListHolder and GridHolder. This is required if the content holder is ListHolder or GridHolder. It is not required if the content holder is ViewHolder.
.setAdapter(adapter);
Set an item click listener when list or grid holder is chosen. In that way you can have callbacks when one of your items is clicked
.setOnItemClickListener(new OnItemClickListener() {
  @Override
  public void onItemClick(DialogPlus dialog, Object item, View view, int position) {
  }
})
Set a global click listener to you dialog in order to handle all the possible click events. You can then identify the view by using its id and handle the correct behaviour. Only views which has id will trigger this event.
.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(DialogPlus dialog, View view) {

    }
})
Add margins to your dialog. They are set to 0 except when gravity is center. In that case basic margins are applied
.setMargin(left, top, right, bottom)
Set padding to the holder
.setPadding(left, top, right, bottom)
Set the footer view using the id of the layout resource
.setFooter(R.layout.footer)
or use view

.setFooter(view)
Get the footer view
View view = dialogPlus.getFooterView();
Set the header view using the id of the layout resource
.setHeader(R.layout.header)
or use view

.setHeader(view)
Get the header view
View view = dialogPlus.getHeaderView();
Set animation resources
.setInAnimation(R.anim.abc_fade_in)
.setOutAnimation(R.anim.abc_fade_out)
Set width and height for the content
.setContentWidth(ViewGroup.LayoutParams.WRAP_CONTENT)  // or any custom width ie: 300
.setContentHeight(ViewGroup.LayoutParams.WRAP_CONTENT)
Dismiss Listener, triggered when the dialog is dismissed
.setOnDismissListener(new OnDismissListener() {
    @Override
    public void onDismiss(DialogPlus dialog) {

    }
})
Cancel Listener, triggered when the dialog is cancelled by back button or clicking outside
.setOnCancelListener(new OnCancelListener() {
    @Override
    public void onCancel(DialogPlus dialog) {

    }
})
BackPress Listener, triggered when the back button is pressed
.setOnBackPressListener(new OnBackPressListener() {
    @Override
    public void onBackPressed(DialogPlus dialog) {

    }
})
Change content container background, as default white
.setContentBackgroundResource(resource)
Change overlay container background, as default it's semi-transparent black
.setOverlayBackgroundResource(resource)
License

Copyright 2016 Orhan Obut

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.



方法	                                        说明
newDialog(Context context)	                    创建dialog
setContentHolder(Holder holder)	                设置holder,必要
setContentWidth(int width)	                    宽：ViewGroup.LayoutParams.WRAP_CONTENT等
setContentHeight(int height)	                高
setHeader(int resourceId)	                    头的布局或View
setFooter(int resourceId)	                    尾的布局或View
setGravity(int gravity)	                        dialog的位置
setExpanded(boolean expanded)	                是否可扩展，默认是false,仅适用于ListView和GridView
setCancelable(boolean isCancelable)	            点击外部区域是否可以取消dialog
setAdapter(BaseAdapter adapter)	                ListView或GridView的adapter,ViewHolder不需要
setOnItemClickListener(OnItemClickListener listener)	ListView或GridView的item的点击事件
setOnClickListener(OnClickListener listener)	        点击事件
setOnDismissListener(OnDismissListener listener)	    dismiss的监听
setOnCancelListener(OnCancelListener listener)	        取消的监听
getHolderView()	                                        获取视图View
getHeaderView()	                                        获取头布局
getFooterView()	                                        获取尾布局
setMargin(left, top, right, bottom)	                    Add margins to your dialog. They are set to 0 except when gravity is center. In that case basic margins are applied
setPadding(left, top, right, bottom)	                Set padding to the holder
setInAnimation(R.anim.abc_fade_in)	                    进入动画
setOutAnimation(R.anim.abc_fade_out)	                移除动画
setContentBackgroundResource(resource)	                dialog的背景色
setOverlayBackgroundResource(resource)	                dialog意外的背景色