All Projects → YangsBryant → Teascreenpopupwindow

YangsBryant / Teascreenpopupwindow

多类型筛选弹框、多数据筛选、多样化diy、单选or多选、必藏 (Multiple Type Screening Boxes, Multiple Data Screening, Diversified Diy, Single or Multiple Selection, Must Star)

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Teascreenpopupwindow

Screenmanager
Flexible way to manage screens with transitions for Unity
Stars: ✭ 300 (+76.47%)
Mutual labels:  screen
React Native Login Screen
React Native Login Screen
Stars: ✭ 499 (+193.53%)
Mutual labels:  screen
Disablemonitor
Easily disable or enable a monitor on your Mac.
Stars: ✭ 1,221 (+618.24%)
Mutual labels:  screen
Calces Gradle Plugin
Android构建工具集:包含快速实现组件化构建脚本,快速实现屏幕最小宽度适配脚本
Stars: ✭ 366 (+115.29%)
Mutual labels:  screen
Mons
POSIX Shell script to quickly manage monitors on X
Stars: ✭ 457 (+168.82%)
Mutual labels:  screen
Bangjago Android Emulator
simple android emulator cli for mobile development
Stars: ✭ 56 (-67.06%)
Mutual labels:  screen
Scrap
📸 Screen capture made easy!
Stars: ✭ 273 (+60.59%)
Mutual labels:  screen
Vue Screen
Reactive screen size and media query states for VueJS
Stars: ✭ 120 (-29.41%)
Mutual labels:  screen
Screentask
(📢 New Version Released) Screen sharing made easy! Share your screen across local devices without internet.
Stars: ✭ 466 (+174.12%)
Mutual labels:  screen
Caffeine Ng
☕ Tray bar application able to temporarily inhibits the screensaver and sleep mode.
Stars: ✭ 72 (-57.65%)
Mutual labels:  screen
Evdi
Extensible Virtual Display Interface
Stars: ✭ 384 (+125.88%)
Mutual labels:  screen
Gbt
Highly configurable prompt builder for Bash, ZSH and PowerShell written in Go.
Stars: ✭ 457 (+168.82%)
Mutual labels:  screen
Screenadaptation
🔥一种非常好用的 Android 屏幕适配——smallestWidth 限定符适配 https://www.jianshu.com/p/1302ad5a4b04
Stars: ✭ 1,123 (+560.59%)
Mutual labels:  screen
React On Screen
Check if a react component in the viewport
Stars: ✭ 357 (+110%)
Mutual labels:  screen
Screeninfo
Fetch location and size of physical screens.
Stars: ✭ 88 (-48.24%)
Mutual labels:  screen
Linux Command
Linux命令大全搜索工具,内容包含Linux命令手册、详解、学习、搜集。https://git.io/linux
Stars: ✭ 17,481 (+10182.94%)
Mutual labels:  screen
Fakelogonscreen
Fake Windows logon screen to steal passwords
Stars: ✭ 710 (+317.65%)
Mutual labels:  screen
Ws Scrcpy
Web client prototype for scrcpy.
Stars: ✭ 164 (-3.53%)
Mutual labels:  screen
Scrcpy
Display and control your Android device
Stars: ✭ 58,880 (+34535.29%)
Mutual labels:  screen
Aircast Ios
aircast iOS SDK --- airplay screen mirror receiver iOS8-iOS11.3 support
Stars: ✭ 64 (-62.35%)
Mutual labels:  screen

TeaScreenPopupWindow

多类型筛选弹框

这是一张图片

引入module

allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'https://www.jitpack.io' }
    }
}
implementation 'com.github.YangsBryant:TeaScreenPopupWindow:1.0.4'

主要代码

public class MainActivity extends AppCompatActivity {

    @BindView(R.id.button)
    Button button;
    @BindView(R.id.button2)
    Button button2;
    @BindView(R.id.button3)
    Button button3;
    private ScreenPopWindow screenPopWindow;
    private ScreenPopWindow screenPopWindow2;
    private ScreenPopWindow screenPopWindow3;

    private List<FiltrateBean> dictList = new ArrayList<>();
    private List<FiltrateBean> dictList2 = new ArrayList<>();
    private List<FiltrateBean> dictList3 = new ArrayList<>();
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ButterKnife.bind( this );
        initParam();
        initView();
    }

    private void initView() {
        screenPopWindow = new ScreenPopWindow(MainActivity.this, dictList);
        screenPopWindow.build();


        screenPopWindow2 = new ScreenPopWindow(MainActivity.this, dictList2);
        //设置多选
        screenPopWindow2.setSingle(false).build();

        screenPopWindow3 = new ScreenPopWindow(MainActivity.this, dictList3);
        //设置单选-GNN模式
        screenPopWindow3.hideRadioButton(true)//开启单选GNN模式
                .setPopupTitle("小仙女服饰",getResources().getColor(R.color.black),16)//设置标题
                .hideTitle(false)//隐藏类别标题
                .build();
        screenPopWindow3.setOnRadioClickListener(new ScreenPopWindow.OnRadioClickListener() {
            @Override
            public void onRadioClick(String text) {
                Toast.makeText(MainActivity.this, text, Toast.LENGTH_SHORT).show();
            }
        });

        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                screenPopWindow.showAsDropDown(button);
                screenPopWindow.setOnConfirmClickListener(new ScreenPopWindow.OnConfirmClickListener() {
                    @Override
                    public void onConfirmClick(List<String> list) {
                        StringBuilder str = new StringBuilder();
                        for (int i=0;i<list.size();i++) {
                            str.append(list.get(i)).append(" ");
                        }
                        Toast.makeText(MainActivity.this, str.toString(), Toast.LENGTH_SHORT).show();
                    }
                });

            }
        });

        button2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                screenPopWindow2.showAsDropDown(button2);
                screenPopWindow2.setOnConfirmClickListener(new ScreenPopWindow.OnConfirmClickListener() {
                    @Override
                    public void onConfirmClick(List<String> list) {
                        StringBuilder str = new StringBuilder();
                        for (int i=0;i<list.size();i++) {
                            str.append(list.get(i)).append(" ");
                        }
                        Toast.makeText(MainActivity.this, str.toString(), Toast.LENGTH_SHORT).show();
                    }
                });
            }
        });

        button3.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                screenPopWindow3.showAsDropDown(button3);
            }
        });
    }

    private void initParam() {
        String[] brand = {"花花公子", "语克","优衣库", "美特斯邦威", "森马", "翰代维", "PUMA"};
        String[] type = {"男装", "T恤", "运动服", "女装", "童装", "紧身衣"};

        /*————防止数据错乱,不能共用javabean————*/
        FiltrateBean fb1 = new FiltrateBean();
        fb1.setTypeName("品牌");
        List<FiltrateBean.Children> childrenList = new ArrayList<>();
        for (String aBrand : brand) {
            FiltrateBean.Children cd = new FiltrateBean.Children();
            cd.setValue(aBrand);
            childrenList.add(cd);
        }
        fb1.setChildren(childrenList);
        /*————————*/
        FiltrateBean fb2 = new FiltrateBean();
        fb2.setTypeName("类型");
        List<FiltrateBean.Children> childrenList2 = new ArrayList<>();
        for (String aType : type) {
            FiltrateBean.Children cd = new FiltrateBean.Children();
            cd.setValue(aType);
            childrenList2.add(cd);
        }
        fb2.setChildren(childrenList2);
        /*————————*/
        FiltrateBean fb3 = new FiltrateBean();
        fb3.setTypeName("品牌");
        List<FiltrateBean.Children> childrenList3 = new ArrayList<>();
        for (String aBrand : brand) {
            FiltrateBean.Children cd = new FiltrateBean.Children();
            cd.setValue(aBrand);
            childrenList3.add(cd);
        }
        fb3.setChildren(childrenList3);
        /*————————*/
        FiltrateBean fb4 = new FiltrateBean();
        fb4.setTypeName("类型");
        List<FiltrateBean.Children> childrenList4 = new ArrayList<>();
        for (String aType : type) {
            FiltrateBean.Children cd = new FiltrateBean.Children();
            cd.setValue(aType);
            childrenList4.add(cd);
        }
        fb4.setChildren(childrenList4);
        /*————————*/
        FiltrateBean fb5 = new FiltrateBean();
        fb5.setTypeName("品牌");
        List<FiltrateBean.Children> childrenList5 = new ArrayList<>();
        for (String aBrand : brand) {
            FiltrateBean.Children cd = new FiltrateBean.Children();
            cd.setValue(aBrand);
            childrenList5.add(cd);
        }
        fb5.setChildren(childrenList5);
        /*————————*/
        FiltrateBean fb6 = new FiltrateBean();
        fb6.setTypeName("类型");
        List<FiltrateBean.Children> childrenList6 = new ArrayList<>();
        for (String aType : type) {
            FiltrateBean.Children cd = new FiltrateBean.Children();
            cd.setValue(aType);
            childrenList6.add(cd);
        }
        fb6.setChildren(childrenList6);

        dictList.add(fb1);
        dictList.add(fb2);

        dictList2.add(fb3);
        dictList2.add(fb4);

        dictList3.add(fb5);
    }
}

TeaScreenPopupWindow属性大全

方法名 属性
setPopupTitle(String text,int textColor,int size) 设置PopWindow的标题, 内容默认无 ,颜色默认#ffffff, 字体大小默认16
setTopView(Boolean bl, int color) 设置顶部分割线是否显示,以及颜色。默认true,#f3f3f3
setBottomView(Boolean bl, int color) 设置底部分割线是否显示,以及颜色。默认true,#f3f3f3
setConfirm(String text, int size, int textColor, int color) 设置确定按钮的文字,字体大小,字体颜色,背景颜色。默认“确定”,14,#ffffff,#0aa666
setReset(String text, int size, int textColor, int color) 设置重置按钮的文字,字体大小,字体颜色,背景颜色。默认“重置”,#000000,#ffffff
setAlpha(int mAlpha) 设置阴影层的透明度 默认是0.5f
hideTitle(boolean bl) 设置分类title是否显示
setTitleColor(int color) 设置title的字体颜色,默认#000000
setTitleSize(int size) 设置title的字体大小,默认14
setRadius(int radius) 设置item圆角大小,默认12
setStrokeWidth(int width) 设置item边框粗细,默认2
setStrokeColor(int color) 设置item边框颜色,默认#0aa666
setBoxWidth(int width) 设置item宽度,默认是200dp
setBoxHeight(int height) 设置item高度,默认是WRAP_CONTENT
setChecked(String color) 设置item选中时的颜色,默认#0aa666
setEnabled(String color) 设置item未选中时的颜色,默认#000000
setBoxSize(int size) 设置item字体大小,默认13
setSingle(boolean bl) 设置是否开启单选,默认单选
hideRadioButton(boolean bl) 设置单选GNN模式
reset() 显示控件时数据重置
build() 参数设置完毕,一定要build一下

联系QQ:961606042

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].