Skip to content

xuezhongyang/MultiSelectPopWindow

 
 

Repository files navigation

MultiSelectPopWindow

image

Usage

Step1:

    allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
	
	dependencies {
	        compile 'com.github.Jay-Goo:MultiSelectPopWindow:v1.0.1'
	}
   

Step2:

   new MultiSelectPopWindow.Builder(this)
                           .setNameArray(names)
                           .setConfirmListener(new MultiSelectPopWindow.OnConfirmClickListener() {
                               @Override
                               public void onClick(ArrayList<Integer> indexList, ArrayList<String> selectedList) {
                               //do something
                               }
                           })
                           .setCancel("取消")
                           .setConfirm("完成")
                           .setTitle("班级列表")
                           .build()
                           .show(findViewById(R.id.mBottom));

Feature

more attributes you could set !

Others

I hope you like this MultiSelectPopWindow. Star is the greatest support for me! Thank U

About

链式多选弹窗,轻松集成

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%