Git Product home page Git Product logo

dselectorbryant's Introduction

DSelectorBryant

单选滚动选择器

这是一张图片

引入module

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

主要代码

public class MainActivity extends AppCompatActivity {
    DSelectorPopup dSelectorPopup;
    ConstraintLayout constraintLayout;
    ArrayList<String> list = new ArrayList<>();
    Button button;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        for (int i = 0; i <= 10; i++) {
            list.add("YMF"+i);
        }
        dSelectorPopup = new DSelectorPopup(this,list);
        dSelectorPopup.build();

        constraintLayout = findViewById(R.id.main);
        button = findViewById(R.id.button);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //弹出窗体
                dSelectorPopup.popOutShadow(constraintLayout);
            }
        });

        /*点击监听器
        Tips:实现此监听器,点击button也会返回当前选中项的下标和文本,因此button既可以当做取消用,也可以当做确定用*/
        dSelectorPopup.setSelectorListener(new DSelectorPopup.SelectorClickListener() {
            @Override
            public void onSelectorClick(int position, String text) {
                Toast.makeText(MainActivity.this,text,Toast.LENGTH_SHORT).show();
                //缩回窗体
                dSelectorPopup.dismissPopup();
            }
        });

        //滑动监听器
        /*dSelectorPopup.setSelectoMoverListener(new DSelectorPopup.SelectorMoveListener() {
           @Override
           public void onSelectorMove(int position, String text) {
               Toast.makeText(MainActivity.this,text,Toast.LENGTH_SHORT).show();
           }
       });*/
    }
}

参数实例

dSelectorPopup.setOffset(5)
                .setTextSize(30)
                .setTextcolor_selection(getResources().getColor(R.color.colorAccent))
                .setTextcolor_unchecked(getResources().getColor(R.color.colorPrimary))
                .setGradual_color(0xffD81B60)
                .setTitleText("我是标题")
                .setTitleColor(getResources().getColor(R.color.colorPrimary))
                .setTitleSize(25)
                .setButton_background(getResources().getDrawable(R.drawable.popup_bg)).build();

Tips:分割线的颜色值为:0xff 加上16进制颜色值,例如:0xffD81B60

DSelectorBryant属性大全

方法名 属性
build() 参数设置完毕,在最后build一下
setHeights(int height) PopupWindow的高度,单位dp
isOutside(boolean bl) 点击弹窗外是否消失,默认true
setSeletion(int seletion) 默认选中项
setOffset(int offset) 对话框中当前项上面和下面的项数
setTextSize(int size) 文本字体大小
setTextcolor_selection(int textcolor_selection) 选中文本颜色
setTextcolor_unchecked(int textcolor_unchecked) 未选中文本颜色
setGradual_color(int gradual_color) 分割线颜色
setFining(boolean fining) 是否开启分割线两端变细,默认true
setTitleText(String titleText) 标题的文字
setTitleSize(int titleSize) 标题文字大小
setTitleColor(int titleColor) 标题文字颜色
setButtonText(String buttonText) 按钮文本
setButtonSize(int buttonSize) 按钮文字大小
setButtonColor(int buttonColor) 按钮文字颜色
setButton_background(Drawable drawable) 按钮背景
setButtonWidt(int buttonWidt) 按钮宽度,单位dp
setButtonHeight(int buttonHeight) 按钮高度,单位dp
popOutShadow(View view) 显示弹窗
dismissPopup() 关闭弹窗
setSelectorListener(SelectorClickListener selectorListener) 点击监听器
setSelectoMoverListener(SelectorMoveListener selectoMoverListener) 滑动监听器

联系QQ:961606042

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.