本文实例为大家分享了Android实现购物车功能的具体代码,供大家参考,具体内容如下

MainActivity布局:

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical" >

android:id="@+id/top_bar"

android:layout_width="match_parent"

android:layout_height="48dp"

android:background="#E24146"

android:orientation="vertical" >

android:id="@+id/title"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:gravity="center"

android:minHeight="48dp"

android:text="购物车"

android:textColor="#ffffff"

android:textSize="17sp" />

android:id="@+id/listview"

android:layout_width="match_parent"

android:layout_height="0dp"

android:layout_weight="1"

android:childIndicator="@null"

android:groupIndicator="@null" >

android:layout_width="match_parent"

android:layout_height="50dp"

android:orientation="horizontal" >

android:layout_width="0dp"

android:layout_height="match_parent"

android:layout_weight="2.5"

android:gravity="center_vertical"

android:orientation="horizontal" >

android:id="@+id/all_chekbox"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="center_vertical"

android:layout_marginLeft="10dp"

android:layout_marginRight="4dp"

android:button="@drawable/check_box_bg"

android:checkMark="?android:attr/listChoiceIndicatorMultiple"

android:gravity="center"

android:minHeight="64dp"

android:paddingLeft="10dp"

android:textAppearance="?android:attr/textAppearanceLarge"

android:visibility="visible" />

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginLeft="5dp"

android:text="合计:"

android:textSize="16sp"

android:textStyle="bold" />

android:id="@+id/tv_total_price"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="¥0.00"

android:textColor="@color/purple"

android:textSize="16sp"

android:textStyle="bold" />

android:id="@+id/tv_delete"

android:layout_width="0dp"

android:layout_height="match_parent"

android:layout_weight="1"

android:background="@color/orange"

android:clickable="true"

android:gravity="center"

android:text="删除"

android:textColor="#FAFAFA" />

android:id="@+id/tv_go_to_pay"

android:layout_width="0dp"

android:layout_height="match_parent"

android:layout_weight="1"

android:background="#E24146"

android:clickable="true"

android:gravity="center"

android:text="付款(0)"

android:textColor="#FAFAFA" />

import android.os.Bundle;

import android.support.v7.app.AppCompatActivity;

import android.view.View;

import android.widget.CheckBox;

import android.widget.ListView;

import android.widget.TextView;

import android.widget.Toast;

import java.util.ArrayList;

import java.util.HashMap;

import java.util.Iterator;

import java.util.List;

import java.util.Map;

import java.util.Random;

public class MainActivity extends AppCompatActivity implements CartAdapter.RefreshPriceInterface ,View.OnClickListener{

private ListView listView;

private CheckBox cb_check_all;

private TextView tv_total_price;

private TextView tv_delete;

private TextView tv_go_to_pay;

private CartAdapter adapter;

private double totalPrice = 0.00;

private int totalCount = 0;

private List> goodsList;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

initDate();

}

//控制价格展示

private void priceControl(Map pitchOnMap){

totalCount = 0;

totalPrice = 0.00;

for(int i=0;i

if(pitchOnMap.get(goodsList.get(i).get("id"))==1){

totalCount=totalCount+Integer.valueOf(goodsList.get(i).get("count"));

double goodsPrice=Integer.valueOf(goodsList.get(i).get("count"))*Double.valueOf(goodsList.get(i).get("price"));

totalPrice=totalPrice+goodsPrice;

}

}

tv_total_price.setText("¥ "+totalPrice);

tv_go_to_pay.setText("付款("+totalCount+")");

}

@Override

public void refreshPrice(Map pitchOnMap) {

priceControl(pitchOnMap);

}

@Override

public void onClick(View view) {

switch (view.getId()){

case R.id.all_chekbox:

AllTheSelected();

break;

case R.id.tv_go_to_pay:

if(totalCount<=0){

Toast.makeText(this,"请选择要付款的商品~",Toast.LENGTH_SHORT).show();

return;

}

Toast.makeText(this,"钱就是另一回事了~",Toast.LENGTH_SHORT).show();

break;

case R.id.tv_delete:

if(totalCount<=0){

Toast.makeText(this,"请选择要删除的商品~",Toast.LENGTH_SHORT).show();

return;

}

checkDelete(adapter.getPitchOnMap());

break;

}

}

//删除操作

private void checkDelete(Map map){

List> waitDeleteList=new ArrayList<>();

Map waitDeleteMap =new HashMap<>();

for(int i=0;i

if(map.get(goodsList.get(i).get("id"))==1){

waitDeleteList.add(goodsList.get(i));

waitDeleteMap.put(goodsList.get(i).get("id"),map.get(goodsList.get(i).get("id")));

}

}

goodsList.removeAll(waitDeleteList);

map.remove(waitDeleteMap);

priceControl(map);

adapter.notifyDataSetChanged();

}

//全选或反选

private void AllTheSelected(){

Map map=adapter.getPitchOnMap();

boolean isCheck=false;

boolean isUnCheck=false;

Iterator iter = map.entrySet().iterator();

while (iter.hasNext()) {

Map.Entry entry = (Map.Entry) iter.next();

if(Integer.valueOf(entry.getValue().toString())==1)isCheck=true;

else isUnCheck=true;

}

if(isCheck==true&&isUnCheck==false){//已经全选,做反选

for(int i=0;i

map.put(goodsList.get(i).get("id"),0);

}

cb_check_all.setChecked(false);

}else if(isCheck==true && isUnCheck==true){//部分选择,做全选

for(int i=0;i

map.put(goodsList.get(i).get("id"),1);

}

cb_check_all.setChecked(true);

}else if(isCheck==false && isUnCheck==true){//一个没选,做全选

for(int i=0;i

map.put(goodsList.get(i).get("id"),1);

}

cb_check_all.setChecked(true);

}

priceControl(map);

adapter.setPitchOnMap(map);

adapter.notifyDataSetChanged();

}

private void initView(){

listView = (ListView) findViewById(R.id.listview);

cb_check_all = (CheckBox) findViewById(R.id.all_chekbox);

tv_total_price = (TextView) findViewById(R.id.tv_total_price);

tv_delete = (TextView) findViewById(R.id.tv_delete);

tv_go_to_pay = (TextView) findViewById(R.id.tv_go_to_pay);

tv_go_to_pay.setOnClickListener(this);

tv_delete.setOnClickListener(this);

cb_check_all.setOnClickListener(this);

adapter=new CartAdapter(this,goodsList);

adapter.setRefreshPriceInterface(this);

listView.setAdapter(adapter);

adapter.notifyDataSetChanged();

}

private void initDate(){

goodsList=new ArrayList<>();

for(int i=0;i<10;i++){

HashMap map=new HashMap<>();

map.put("id",(new Random().nextInt(10000)%(10000-2900+2900) + 2900)+"");

map.put("name","购物车里的第"+(i+1)+"件商品");

map.put("type",(i+20)+"码");

map.put("price",(new Random().nextInt(100)%(100-29+29) + 29)+"");

map.put("count",(new Random().nextInt(10)%(10-1+1) + 1)+"");

goodsList.add(map);

}

initView();

}

}

CartAdapter布局:

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="vertical" >

android:layout_width="match_parent"

android:layout_height="1dp"

android:background="#CCCCCC" />

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:background="@color/page_backgroup"

android:orientation="horizontal" >

android:id="@+id/check_box"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_gravity="center_vertical"

android:layout_marginLeft="10dp"

android:layout_marginRight="4dp"

android:button="@drawable/check_box_bg"

android:checkMark="?android:attr/listChoiceIndicatorMultiple"

android:gravity="center"

android:minHeight="64dp"

android:minWidth="32dp"

android:textAppearance="?android:attr/textAppearanceLarge"

android:visibility="visible" />

android:id="@+id/iv_adapter_list_pic"

android:layout_width="85dp"

android:layout_height="85dp"

android:layout_marginBottom="15dp"

android:layout_marginTop="13dp"

android:scaleType="centerCrop"

android:src="@mipmap/good_icon" />

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:layout_gravity="center_vertical"

android:layout_marginTop="10dp"

android:layout_marginLeft="13dp" >

android:id="@+id/tv_goods_name"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_marginRight="10dp"

android:layout_marginTop="20dp"

android:ellipsize="end"

android:maxLines="2"

android:textColor="@color/grey_color1"

android:textSize="14sp" />

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_alignParentBottom="true"

android:layout_marginBottom="30dp"

android:orientation="horizontal" >

android:id="@+id/tv_goods_price"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_centerVertical="true"

android:singleLine="true"

android:textColor="@color/orange_color"

android:textSize="14sp"

android:textStyle="bold" />

android:id="@+id/tv_type_size"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_centerVertical="true"

android:layout_marginLeft="10dp"

android:layout_toRightOf="@+id/tv_goods_price"

android:singleLine="true"

android:textColor="@color/grey_color3"

android:textSize="10sp"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentRight="true"

android:layout_centerVertical="true"

android:layout_marginRight="15dp"

android:orientation="horizontal" >

android:id="@+id/tv_reduce"

android:layout_width="25dp"

android:layout_height="25dp"

android:background="@drawable/text_angle_gray"

android:gravity="center"

android:text="一"

android:textColor="@color/grey_color1"

android:textSize="12sp" />

android:id="@+id/tv_num"

android:layout_width="25dp"

android:layout_height="25dp"

android:background="@drawable/text_angle"

android:gravity="center"

android:singleLine="true"

android:text="1"

android:textColor="@color/grey_color1"

android:textSize="12sp" />

android:id="@+id/tv_add"

android:layout_width="25dp"

android:layout_height="25dp"

android:background="@drawable/text_angle_right"

android:gravity="center"

android:text="+"

android:textColor="@color/grey_color1"

android:textSize="12sp" />

import android.content.Context;

import android.view.LayoutInflater;

import android.view.View;

import android.view.ViewGroup;

import android.widget.BaseAdapter;

import android.widget.CheckBox;

import android.widget.ImageView;

import android.widget.TextView;

import android.widget.Toast;

import java.util.HashMap;

import java.util.List;

import java.util.Map;

/**

* Created by lipeng

* 2017/6/5.

*/

public class CartAdapter extends BaseAdapter {

private Context context;

private List> dataList;

private ViewHolder vh;

private Map pitchOnMap;

private RefreshPriceInterface refreshPriceInterface;

public CartAdapter(Context context, List> list){

this.context=context;

this.dataList=list;

pitchOnMap=new HashMap<>();

for(int i=0;i

pitchOnMap.put(dataList.get(i).get("id"),0);

}

}

@Override

public View getView(final int position, View view, ViewGroup viewGroup) {

vh=new ViewHolder();

if(view==null){

view= LayoutInflater.from(context).inflate(R.layout.item_layout,null);

vh.checkBox=(CheckBox)view.findViewById(R.id.check_box);

vh.icon=(ImageView)view.findViewById(R.id.iv_adapter_list_pic);

vh.name=(TextView)view.findViewById(R.id.tv_goods_name);

vh.price=(TextView)view.findViewById(R.id.tv_goods_price);

vh.type=(TextView)view.findViewById(R.id.tv_type_size);

vh.num=(TextView)view.findViewById(R.id.tv_num);

vh.reduce=(TextView)view.findViewById(R.id.tv_reduce);

vh.add=(TextView)view.findViewById(R.id.tv_add);

view.setTag(vh);

}else {

vh=(ViewHolder)view.getTag();

}

if(dataList.size()>0){

if(pitchOnMap.get(dataList.get(position).get("id"))==0)vh.checkBox.setChecked(false);

else vh.checkBox.setChecked(true);

HashMap map=dataList.get(position);

vh.name.setText(map.get("name"));

vh.num.setText(map.get("count"));

vh.type.setText(map.get("type"));

vh.price.setText("¥ "+(Double.valueOf(map.get("price")) * Integer.valueOf(map.get("count"))));

vh.checkBox.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

final int index=position;

if(((CheckBox)view).isChecked())pitchOnMap.put(dataList.get(index).get("id"),1);else pitchOnMap.put(dataList.get(index).get("id"),0);

refreshPriceInterface.refreshPrice(pitchOnMap);

}

});

vh.reduce.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

final int index=position;

dataList.get(index).put("count",(Integer.valueOf(dataList.get(index).get("count"))-1)+"");

if(Integer.valueOf(dataList.get(index).get("count"))<=0){

//可提示是否删除该商品,确定就remove,否则就保留1

String deID=dataList.get(index).get("id");

dataList.remove(index);

pitchOnMap.remove(deID);

}

notifyDataSetChanged();

refreshPriceInterface.refreshPrice(pitchOnMap);

}

});

vh.add.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

final int index=position;

dataList.get(index).put("count",(Integer.valueOf(dataList.get(index).get("count"))+1)+"");

if(Integer.valueOf(dataList.get(index).get("count"))>15){

//15为库存可选择上限

Toast.makeText(context,"已达库存上限~",Toast.LENGTH_SHORT).show();

return;

}

notifyDataSetChanged();

refreshPriceInterface.refreshPrice(pitchOnMap);

}

});

}

return view;

}

public Map getPitchOnMap(){

return pitchOnMap;

}

public void setPitchOnMap(Map pitchOnMap){

this.pitchOnMap=new HashMap<>();

this.pitchOnMap.putAll(pitchOnMap);

}

public interface RefreshPriceInterface{

void refreshPrice(Map pitchOnMap);

}

public void setRefreshPriceInterface(RefreshPriceInterface refreshPriceInterface){

this.refreshPriceInterface=refreshPriceInterface;

}

@Override

public Object getItem(int i) {

return null;

}

@Override

public long getItemId(int i) {

return 0;

}

@Override

public int getCount() {

if (dataList != null) {

return dataList.size();

} else {

return 0;

}

}

class ViewHolder{

CheckBox checkBox;

ImageView icon;

TextView name,price,num,type,reduce,add;

}

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

android购物车代码简述,Android实现简单购物车功能相关推荐

  1. php简单的购物车,利用PHP实现一个简单购物车的demo示例代码

    利用PHP实现一个简单购物车的demo示例代码 数据结构跟关于PHP写购物车大体差不多,这里站长主要就购物车的主要业务逻辑进行一下说明: 1.用户未登陆时只能浏览商品,不能将其加入购物车 2.当未登陆 ...

  2. Android Studio仿QQ界面实现简单的功能

    文章目录 1. 登录界面 2. 记住密码功能 3. Fragment界面跳转 3.1 Fragement的界面编写 4. 聊天界面 写在前面 由于本人初学阶段,写这篇博客是总结所学的知识点,为后面的进 ...

  3. java web购物车代码_java web开发之购物车功能实现示例代码

    之前没有接触过购物车的东东,也不知道购物车应该怎么做,所以在查询了很多资料,总结一下购物车的功能实现. 查询的资料,找到三种方法: 1.用cookie实现购物车: 2.用session实现购物车: 3 ...

  4. android静态代码扫描,android 静态代码扫描

    开始做这样一个东西是为了帮助开发减少代码方面的问题,提高代码质量,减小以后上线的风险.前面看了 360 的那个静态代码扫描感觉很强大,但目前没这实力去做成这样,希望早日开源,多多学习.所以就先用开源的 ...

  5. android默认代码混淆,Android SDK默认混淆配置文件

    一.介绍 通常情况下编译后的字节码包含了大量调试信息(如源类名/行号等) 混淆代码就能删除这些调试信息,并用无意义字符替换所有名字,增加反编译难度! ProGuard是一个混淆代码的开源项目,主要作用 ...

  6. 直播倒计时android,直播代码,Android实现验证码倒计时

    直播代码,Android实现验证码倒计时实现的相关代码 创建一个CountDownTimerUtils工具类 //倒计时函数 private class CountDownTimerUtilsexte ...

  7. android studio 代码缩略图,android studio 设置模板

    本文记录了自己是如何建立一个模板的,其实过程很简单. ·1.查看android studio 本身自带的模板: 2.模仿android studio 模板写一个自己的模板: android studi ...

  8. android mysql代码_LitePal——Android数据库框架完整使用手册(示例代码)

    LitePal for Android LitePal是一个开源的Android库,使开发人员使用SQLite数据库非常简单.您无需编写任何SQL语句就可以完成大部分数据库操作,包括创建或升级表,增. ...

  9. php购物车数据表,PHP开发简单购物车功能创建数据库表

    前面的章节我们分别介绍了javascript和jquery实现购物车功能. 本章节我们将通过php代码来为朋友们讲解购物车功能实现思路. 方法是把从数据库中获取的商品存入数组,对数组进行操作,数组中的 ...

最新文章

  1. linux命令——pwd
  2. mxnet基础到提高(27)-Dense
  3. 【HTML】CSS基础知识
  4. 技术公开课:SQL Server 索引优化原则与工具
  5. php中的DS,PHP Ds\Set reverse()用法及代码示例
  6. Android唤醒屏幕
  7. 使用 profile 进行python代码性能分析
  8. php 封装的常用函数
  9. 无人机模拟操控凤凰模拟器(PhoenixRC 5.0)安装及配置图文教程(附凤凰模拟器下载地址)
  10. 《SEM长尾搜索营销策略解密》一一2.11 向传统行业致敬
  11. python股票编程_Python爬虫回测股票的实例讲解
  12. 推荐一个在线查看函数图象的网站 —— Desmos
  13. 浅析 | 海岸试验数据管理系统TDM-设计理念(系统特征)
  14. No resource found that matches the given name 'Theme.AppCompat.Light.DarkActionBar'
  15. 华为悦盒EC6108V9通刷固件及教程
  16. 二叉树与哈希表以及基本算法
  17. c# 计算圆锥的体积_用C#如何编写程序计算球,圆柱和圆锥的表面积和体积? 用C#编写方法并通过方法...
  18. 服务器ibmc无法加载js文件,weUI应用之JS常用信息提示弹层的封装
  19. 设置webhook_数据采集教程_智能模式_如何设置Webhook功能_后羿采集器
  20. C++程序设计教程(钱能)第四章 学习笔记

热门文章

  1. 【论文泛读123】跨语言情感检测
  2. Reverse recognition
  3. 3个亲测好用的电子书转换工具,几乎覆盖所有电子书格式
  4. linux以太网连接树莓派,树莓派 Zero USB/以太网方式连接配置教程,
  5. TXT 文本阅读器源码
  6. 二、NovAtel Connect 1.80 版本 操作说明书
  7. 利用PPT绘制京东阅读Logo
  8. 查询快递最新状态php,PHP查询快递信息的方法
  9. php定时任务管理,基于PHP的定时任务管理器 Zebra-Crontab
  10. 什么是开尔文测试?什么时候需要采用开尔文接法?