最近项目中用到了很多对元素(商品,物件)的加减框的需求,在此做个笔记以后用到了,直接拿来用.废话不多说直接进入正题.
需求:
- 框中默认数字为"1",最大"99",可增删减;
- 最小单位为"1"时,减号-变为灰色,点击减号-框中数字不变仍然为"1";
- 最大单位为"99"时,加号+变为灰色,点击加号+框中数字不变仍然为"99".
布局文件如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
tools:context=".MainActivity">