All Projects → tonyvu2014 → Android Shoppingcart

tonyvu2014 / Android Shoppingcart

Licence: mit
An implementation of android shopping cart library project for Android

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Android Shoppingcart

Ecommerce App Android
E-Commerce App for Android with Material Design Pattern
Stars: ✭ 470 (+510.39%)
Mutual labels:  ecommerce, shopping-cart
Gogrocery
Its an eCommerce app inspired from Amazon , big Basket , grofers ,grocery app , Etc
Stars: ✭ 62 (-19.48%)
Mutual labels:  ecommerce, shopping-cart
Angular Shoppingcart
ShoppingCart (Ecommerce) 🛒 Application using Angular10, Firebase, PWA, Drag&Drop, Materialized Bootstrap and i18n 🚀🔥👨‍💻
Stars: ✭ 483 (+527.27%)
Mutual labels:  ecommerce, shopping-cart
Module Shop
一个基于 .NET Core构建的简单、跨平台、模块化的商城系统
Stars: ✭ 398 (+416.88%)
Mutual labels:  ecommerce, shopping-cart
Sylius
Open Source eCommerce Platform on Symfony
Stars: ✭ 6,598 (+8468.83%)
Mutual labels:  ecommerce, shopping-cart
Shop.js
🛍️ Ecommerce UI components and framework powered by React.
Stars: ✭ 423 (+449.35%)
Mutual labels:  ecommerce, shopping-cart
Angular Commerce
Angular components for scaffolding online store
Stars: ✭ 526 (+583.12%)
Mutual labels:  ecommerce, shopping-cart
Awesome Woocommerce
Plugins and code snippets to improve your WooCommerce store.
Stars: ✭ 279 (+262.34%)
Mutual labels:  ecommerce, shopping-cart
Nopcommerce
The most popular open-source eCommerce shopping cart solution based on ASP.NET Core
Stars: ✭ 6,827 (+8766.23%)
Mutual labels:  ecommerce, shopping-cart
Yupe
Yupe! is an open source Yiiframework-based online e-commerce solution. Demo https://demo.yupe.ru/
Stars: ✭ 596 (+674.03%)
Mutual labels:  ecommerce, shopping-cart
Magicprint Ecommerce App Android
E-Commerce App Source Code for Android with Material Design Pattern Using Firebase and MySQL with Android Lottie Animations just like Flipkart, Myntra and Amazon :)
Stars: ✭ 331 (+329.87%)
Mutual labels:  ecommerce, shopping-cart
Snipcart Jekyll
Demo for a Snipcart powered e-commerce store built with Jekyll
Stars: ✭ 48 (-37.66%)
Mutual labels:  ecommerce, shopping-cart
Simplcommerce
A simple, cross platform, modularized ecommerce system built on .NET Core
Stars: ✭ 3,474 (+4411.69%)
Mutual labels:  ecommerce, shopping-cart
Aimeos Laravel
Laravel ecommerce package for professional, ultra fast online shops, complex B2B applications and #gigacommerce
Stars: ✭ 5,204 (+6658.44%)
Mutual labels:  ecommerce, shopping-cart
Sapper Ecommerce
Svelte ecommerce - Headless, Authentication, Cart & Checkout, TailwindCSS, Server Rendered, Proxy + API Integrated, Animations, Stores, Lazy Loading, Loading Indicators, Carousel, Instant Search, Faceted Filters, 1 command deploy to production, Open Source, MIT license. Join us as contributor ([email protected])
Stars: ✭ 289 (+275.32%)
Mutual labels:  ecommerce, shopping-cart
Wellcommerce
Open-source E-Commerce software
Stars: ✭ 499 (+548.05%)
Mutual labels:  ecommerce, shopping-cart
django ecommerce
Scalable Django E-Commerce, perfect to start one new online shop project.
Stars: ✭ 25 (-67.53%)
Mutual labels:  ecommerce, shopping-cart
S Cart
This project has been replaced by https://github.com/s-cart/s-cart
Stars: ✭ 258 (+235.06%)
Mutual labels:  ecommerce, shopping-cart
Ecommerce Open Api
果酱小店:基于 Laravel + swoole + 小程序的开源电商系统,优雅与性能兼顾 : )
Stars: ✭ 546 (+609.09%)
Mutual labels:  ecommerce, shopping-cart
Ecommerce Codeigniter Bootstrap
Responsive, Multi-Vendor, MultiLanguage Online Store Platform (shopping cart solution)
Stars: ✭ 788 (+923.38%)
Mutual labels:  ecommerce, shopping-cart

android-shoppingcart

An implementation of android shopping cart library project for Android.

To use this library, follow these steps:

Download and include library in your dependencies

dependencies {
    // ...
    compile project(path: ':library')
}

For any product that you want to add in your shopping cart, create a class that extends the Saleable interface and implements these 2 methods:

getName() // must return the product name
getPrice() // must return the product price

Also override equals() and hashCode() methods.

Now from anywhere in your application, you can retrieve the shopping cart with

Cart cart = CartHelper.getCart();

After retrieving the shopping cart, the library provides various methods to manipulate the shopping cart like adding, removing, updating products or clear the entire shopping cart.

For an example on how to use this library, please see the demo (https://github.com/tonyvu2014/android-shoppingcart/tree/master/demo) app module.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].