一个弹性dialog
如果你是AndroidStudio用户,在build.gradle中添加
compile 'com.cool:elasticdialog:1.0.0'
-
初始化
private void initDialog() { if(elasticDialog== null) { elasticDialog = new ElasticDialog(this); elasticDialog.layout(R.layout.dialog_elastic) .arcColor(Color.WHITE) .duration(1000) .arcHight(40); mRecyclerView = elasticDialog.findViewById(R.id.recyclerview); } }
布局文件dialog_elastic.xml
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http:// schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.v7.widget.RecyclerView android:id="@+id/recyclerview" android:layout_width="match_parent" android:layout_height="300dp" android:layout_gravity="bottom"> </android.support.v7.widget.RecyclerView>
-
调用
elasticDialog.show();
-
布局文件dialog_elastic子View需要设置
android:layout_gravity="bottom"
属性 -
根布局使用
FrameLayout
博客地址: