All Projects → BreadKid → Searchitem

BreadKid / Searchitem

小搜搜——商品条形码/二维码搜索APP

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Searchitem

Geeknews
📚A pure reading App based on Material Design + MVP + RxJava2 + Retrofit + Dagger2 + Realm + Glide
Stars: ✭ 3,496 (+3541.67%)
Mutual labels:  jsoup, retrofit, butterknife
Githubfollows
A demo project based on MVVM architecture and material design & animations.
Stars: ✭ 272 (+183.33%)
Mutual labels:  android-app, retrofit
SilverScreener
A feature-rich movie guide app, that lets you discover movies from TMDb.
Stars: ✭ 24 (-75%)
Mutual labels:  retrofit, butterknife
Rxretrojsoup
A simple API-like from html website (scrapper) for Android, RxJava2 ready !
Stars: ✭ 492 (+412.5%)
Mutual labels:  jsoup, retrofit
OLA Play Music App
Music Streaming App
Stars: ✭ 27 (-71.87%)
Mutual labels:  retrofit, butterknife
MVPHulk
Android MVP 快速集成方案 (支持AndroidX)
Stars: ✭ 19 (-80.21%)
Mutual labels:  retrofit, butterknife
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 (+244.79%)
Mutual labels:  android-app, firebase
Online School Management App Angular Firebase
Angular 11.0 Firebase App - Online School , Student Management App
Stars: ✭ 120 (+25%)
Mutual labels:  android-app, firebase
Androidall
Android 程序员需要掌握的技术栈:数据结构算法、程序架构、设计模式、性能优化、插件化、热更新、Kotlin、NDK、Jetpack,以及常用的开源框架源码分析如 Flutter、Router、RxJava、Glide、LeakCanary、Dagger2、Retrofit、OkHttp、ButterKnife 等
Stars: ✭ 849 (+784.38%)
Mutual labels:  retrofit, butterknife
Awesome Third Library Source Analysis
📖 Deep understanding of popular open source library source code (optimizing...)
Stars: ✭ 866 (+802.08%)
Mutual labels:  retrofit, butterknife
Quiz
An android application which uses Open Trivia Api.
Stars: ✭ 34 (-64.58%)
Mutual labels:  retrofit, butterknife
Retrofit-with-EventBus
Retrofit With EventBus
Stars: ✭ 21 (-78.12%)
Mutual labels:  retrofit, butterknife
Cookman
一款菜谱查询工具Android APP
Stars: ✭ 186 (+93.75%)
Mutual labels:  android-app, retrofit
WanAndroid
wanandroid的Kotlin版,采用Android X
Stars: ✭ 20 (-79.17%)
Mutual labels:  retrofit, android-app
Firebasecrud
Rich UI and animation flutter app backed by firebase
Stars: ✭ 121 (+26.04%)
Mutual labels:  android-app, firebase
Wish
常用javaweb技术,不定期更新,欢迎讨论。
Stars: ✭ 60 (-37.5%)
Mutual labels:  zxing, jsoup
Marvel
Marvel Characters Android Application Assigned by smava GmbH
Stars: ✭ 227 (+136.46%)
Mutual labels:  firebase, butterknife
Qbox
🐈 RxJava+Retrofit+Okhttp+Glide + A life tool App, contains modules: news; jokes; constellation fortune; LED; weather; calendar; two-dimensional code, and more ... 小秋魔盒是一个生活工具 App,主要功能有:新闻资讯;微信精选美文;笑话趣图;星座运势;LED字幕;天气;日历;二维码;手电筒;老黄历。在开发中尽可能多的用了目前比较流行的框架和库。
Stars: ✭ 1,360 (+1316.67%)
Mutual labels:  zxing, retrofit
Changedetection
Automatically track websites changes on Android in background.
Stars: ✭ 563 (+486.46%)
Mutual labels:  android-app, jsoup
Awesome Android Kotlin Apps
👓 A curated list of awesome android kotlin apps by open-source contributors.
Stars: ✭ 1,058 (+1002.08%)
Mutual labels:  firebase, retrofit

SearchItem

商品条形码/二维码搜索 Android APP


简述

一个轻量的商品条码/二维码扫描工具,并能够实时查询淘宝最低价。

该应用采用Google Zxing进行条码/二维码的扫描,参考官网与chentao0707的精简代码;取得扫描返回值后用Retrofit进行网络通信,从中国物品编码网查询得到商品的官方信息,该网站接口返回的是一个html,这里通过Jsoup解析;再查询淘宝该商品的最低价(前三名),解析返回json并处理显示。

中文字体:NotoSansCJKsc-Light
风格:Theme.Material.Light.NoActionBar
组件:cart && button
动画:触摸反馈

接口来源:(网页接口)

--

适用版本

minSdkVersion 21
targetSdkVersion 25

--

第三方组件

--

依赖

dependencies {
    ...
    
    // Google zxing扫描
    compile 'com.google.zxing:zxing-parent:3.3.0'
    compile files('libs/zxing.jar')
    // 控件绑定
    compile 'com.jakewharton:butterknife:7.0.1'
    // Google FireBase
    compile 'com.google.firebase:firebase-core:9.8.0'
    compile 'com.google.firebase:firebase-database:9.8.0'
    // 网络通信
    compile 'com.squareup.okhttp3:okhttp:3.4.2'
    compile 'com.squareup.retrofit2:retrofit:2.0.2'
    // jsoup HTML parser library @ http://jsoup.org/
    compile 'org.jsoup:jsoup:1.10.1'
}

--

权限

    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.CAMERA" />

--

展示

--

Bug

欢迎大家去issue里留言~~~

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].