RatioButton:一个带有大小单位转换功能的数量修改控件

RatioButton

  • 带有大小单位转换功能的数量修改控件,常用于商品管理app。
  • Quantity modification control with size unit conversion function, commonly used in commodity management app

GitHub地址: https://github.com/lintianlin/RatioButton

详细介绍

  • 我们开发过程中,部分类型的商品管理app会经常用到大小单位转换,如酒类中的1箱=6瓶的转换。RatioButton就是将大小单位转换的逻辑,库存判断逻辑,越界判断逻辑进行了封装,避免了重复造轮子。目前的v1.0.0还是一个基础版本,后期还需要进行优化。

示例效果

dialog.gif

ratio.gif

yj.gif

zero.gif

关键代码


    public void setDisplayCount(int tempSmallCount, int tempBigCount) {
        if (ratio > 0) {//ratio为转换率,ratio>0是当有大单位的时候
            if (tempBigCount * ratio + tempSmallCount > maxCount) {
                ToastUtils.showToast(context, ERRORTIP);
                bigCount = maxCount / ratio;//取整运算
                smallCount = maxCount % ratio;//取余运算
            } else {
                if (tempSmallCount > ratio) {//当小单位数量大于ratio的时候需要进位
                    smallCount = tempSmallCount % ratio;
                    bigCount = tempBigCount + tempSmallCount / ratio;
                } else {
                    smallCount = tempSmallCount;
                    bigCount = tempBigCount;
                }
            }
        } else {
            smallCount = tempSmallCount;
            bigCount = tempBigCount;
        }
        if (smallCount == 0) {//越界判断,当数量为0时,减按钮不能点击并置灰
            btnSmallSub.setEnabled(false);
        } else {
            btnSmallSub.setEnabled(true);
        }
        if (bigCount == 0) {
            btnBigSub.setEnabled(false);
        } else {
            btnBigSub.setEnabled(true);
        }
        tvSmallCount.setText(String.valueOf(smallCount));
        tvBigCount.setText(String.valueOf(bigCount));
    }

属性

属性属性名称类型默认值
btnHeight控件的高度dimension0
btnWidth控件的高度dimension0
tvTextSize数量的字体大小dimension0
editable是否可以直接编辑booleanfalse
haveBigUnit是否有大单位booleanfalse
minAmount最小数量integer0
margin小单位按钮距离大单位按钮的距离dimension10

使用方法

  • 1.Add it in your root build.gradle at the end of repositories:

    allprojects {
            repositories {
                ...
                maven { url 'https://jitpack.io' }
            }
        }
  • 2.Add the dependency

    dependencies {
                implementation 'com.github.lintianlin:RatioButton:v1.0.0'
        }
  • 3.edit xml

    <com.sinfeeloo.ratiobutton.RatiolBtn
            android:id="@+id/bsb_goods"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/tv_goods_name"
            android:layout_alignParentEnd="true"
            app:margin="5dp"
            app:btnHeight="30dp"
            app:btnWidth="120dp">
        </com.sinfeeloo.ratiobutton.RatiolBtn>
  • 4.edit java
         ratioBtn.setRatio(item.getRatio());
            ratioBtn.setMaxCount(item.getStorage());
            ratioBtn.setUnit(item.getSmallUnit(), item.getBigUnit());
            ratioBtn.setDisplayCount(item.getSmallcount(), item.getBigCount());
            ratioBtn.setOnCountChangedLisener(new OnCountChangedListener() {
                @Override
                public void onCountChange(View view, int bigCount, int smallCount) {
                    
                }
            });
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值