android购物车加减控件,购物车加减器自定义组合控件

本文介绍了一个自定义购物车加减器的实现,包括自绘控件、重写onMeasure、onLayout和onDraw方法。通过创建ShopAddView类,实现了加减数量的功能,并提供了设置数量和监听数量变化的方法。在布局文件中,设置了EditText和TextView的样式。在Activity或Fragment中可以方便地调用并设置初始数量及监听回调。
摘要由CSDN通过智能技术生成

一.案例效果

456799b29e95

购物车加减器.png

二.技术点描述:

1.自绘控件(完全自定义控件):继承的是RelativeLayout

2.自定义控件,重写三个方法:

(1) onMeasure(int,int)测量:该方法来检查View组件以及它所包含的所有子组件i 的大小。

(2)onLayout(boolean,int,int,int,int)位置:当该组件要分配子组件的位置,大小时,调用。

(3) onDraw(canves) 绘制:当该组件将要绘制它的内容是,回调该方法(使用频率最高,不要在此方法中做耗时操作和对象的建立)但是今天这个案例用不到各位不用担心就是复习一下自定义view的核心方法。

三.代码实现步骤:

1.创建ShopAddView 类

/**

*@describe(描述):自定义购物车加减器

*@data(日期): 2019/10/15

*@time(时间): 13:56

*@author(作者): fanyanlong

**/

public class ShopAddView extends RelativeLayout implements View.OnClickListener {

private EditText mEdit;

private TextView mTextDelete, mTextAdd;

public ShopAddView(Context context) {

super(context);

init(context);

}

public ShopAddView(Context context, AttributeSet attrs) {

super(context, attrs);

init(context);

}

private Context context;

private void init(Context context) {

this.context = context;

View view = View.inflate(context, R.layout.shop_add, null);

mEdit = (EditText) view.findViewById(R.id.shop_edit);

mTextDelete = (TextView) view.findViewById(R.id.shop_delete);

mTextDelete.setOnClickListener(this);

mTextAdd = (TextView) view.findViewById(R.id.shop_add);

mTextAdd.setOnClickListener(this);

addView(view);

}

//传递数量

public void setCount(int count) {

mEdit.setText(count + "");

mEdit.setSelection(mEdit.getText().toString().length());

}

//加减器点击事件

@Override

public void onClick(View v) {

switch (v.getId()) {

case R.id.shop_delete:

String count = mEdit.getText().toString().trim();

int count1 = Integer.parseInt(count);

if (count1 <= 1) {

Toast.makeText(context, "您至少有一个商品", Toast.LENGTH_LONG).show();

return;

}

count1--;

mEdit.setText(count1 + "");

if (mOnNumListener != null) {

mOnNumListener.count(count1);

}

break;

case R.id.shop_add:

String countAdd = mEdit.getText().toString().trim();

int countAdd1 = Integer.parseInt(countAdd);

countAdd1++;

mEdit.setText(countAdd1 + "");

if (mOnNumListener != null) {

mOnNumListener.count(countAdd1);

}

break;

}

}

private OnNumListener mOnNumListener;

public void setOnNumListener(OnNumListener mOnNumListener) {

this.mOnNumListener = mOnNumListener;

}

public void setEditCancle() {

mEdit.setEnabled(false);

mTextAdd.setEnabled(false);

mTextDelete.setEnabled(false);

}

//定义数量回调接口

public interface OnNumListener {

void count(int count);

}

}

2.创建shop_car_edit.xml文件( EditText 控件描边)

android:width="1dp"

android:color="@color/color_969" />

3. 布局文件

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:layout_width="wrap_content"

android:layout_height="wrap_content">

android:id="@+id/shop_delete"

android:layout_width="20dp"

android:layout_height="wrap_content"

android:gravity="center_horizontal"

android:text="-"

android:textSize="14sp" />

android:id="@+id/shop_edit"

android:layout_width="60dp"

android:layout_height="wrap_content"

android:layout_marginLeft="5dp"

android:layout_marginRight="5dp"

android:layout_toRightOf="@+id/shop_delete"

android:background="@drawable/shop_car_edit"

android:gravity="center_horizontal"

android:textColor="@color/color_ccc" />

android:id="@+id/shop_add"

android:layout_width="20dp"

android:layout_height="wrap_content"

android:layout_toRightOf="@+id/shop_edit"

android:gravity="center_horizontal"

android:text="+"

android:textSize="14sp" />

4. 调用组合控件Activity /Fragment 中调用自定义ShopAddView 组合控件布局

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical">

android:id="@+id/addview"

android:layout_width="wrap_content"

android:layout_height="wrap_content">

5.主页面 MainActivity 实现

//初始化组合组件

addView = findViewById(R.id.addview);

//设置数量

addView.setCount(2);

//回调修改后的数量

addView.setOnNumListener(new ShopAddView.OnNumListener() {

@Override

public void count(int count) {

Log.d(TAG, "count: "+count);

}

});

想要源码评论区回复我,给你私发链接

=======Kotlin基础篇【4】Kotlin基础语法即将更新=======

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值