{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

第一行代码 Android

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

第一行代码 Android

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

CSDN超人气博主、CSDN 2013年度十大博客之星、资深Android开发者郭霖力作!
第一本引入经验值、升级与宝物系统的计算机书!见证自己从菜鸟到鹰的成长!
全球最大中文Android开发者社区(eoe.cn)、安卓巴士 联袂推荐


进入品牌店请点击:

Content Description

本书是Android初学者的入门书。全书由浅入深、系统全面地讲解了Android软件开发的方方面面。
第1章带领你搭建Android开发环境,完成你的一个Android程序。
第2至13章完整地讲解了Android开发中的各种基本知识和关键技术,包括四大组件、UI、碎片、广播机制、数据存储、服务、多媒体、网络、定位服务、传感器,以及分布式版本控制系统Git的使用等等。在部分章节会穿插相关技术的高级使用技巧。
第14章和第15章则将带领你编写一个完整的项目,教会你如何打包、上架、嵌入广告并获得盈利。
本书内容通俗易懂,既适合初学者循序渐进地阅读,也可作为一本参考手册,随时查阅。
Author Description

郭霖,Android软件开发工程师。从事Android开发工作四年,有着丰富的项目实战经验,负责及参与开发过多款移动应用与游戏,对Android系统架构及应用层开发有着深入的理解。
2013年3月开始,在CSDN上发表Android技术相关博文,很快就获得了大量网友的好评。短短一年时间博客访问量超过50万次,评价近3000条。荣获CSDN认证专家,并被评选为2013年CSDN年度博客之星。
现就职于蜗牛移动,继续从事Android开发工作。
Catalogue

第1章开始启程,你的第一行Android代码
1.1了解全貌,Android王国简介
1.1.1Android系统架构
1.1.2Android已发布的版本
1.1.3Android应用开发特色
1.2手把手带你搭建开发环境
1.2.1准备所需要的软件
1.2.2搭建开发环境
1.3创建你的第一个Android项目
1.3.1创建HelloWorld项目
1.3.2运行HelloWorld
1.3.3分析你的第一个Android程序
1.3.4详解项目中的资源
1.4前行必备,掌握日志工具的使用
1.4.1添加LogCat到你的Eclipse
1.4.2使用Android的日志工具Log
1.4.3为什么使用Log而不使用System.out
1.5小结与点评
第2章先从看得到的入手,探究活动
2.1活动是什么
2.2活动的基本用法
2.2.1手动创建活动
2.2.2创建和加载布局
2.2.3在AndroidManifest文件中注册
2.2.4隐藏标题栏
2.2.5在活动中使用Toast
2.2.6在活动中使用Menu
2.2.7销毁一个活动
2.3使用Intent在活动之间穿梭
2.3.1使用显式Intent
2.3.2使用隐式Intent
2.3.3更多隐式Intent的用法
2.3.4向下一个活动传递数据
2.3.5返回数据给上一个活动
2.4活动的生命周期
2.4.1返回栈
2.4.2活动状态
2.4.3活动的生存期
2.4.4体验活动的生命周期
2.4.5活动被回收了怎么办
2.5活动的启动模式
2.5.1standard
2.5.2singleTop
2.5.3singleTask
2.5.4singleInstance
2.6活动的最佳实践
2.6.1知晓当前是在哪一个活动
2.6.2随时随地退出程序
2.6.3启动活动的最佳写法
2.7小结与点评
第3章软件也要拼脸蛋,UI开发的点点滴滴
3.1该如何编写程序界面
3.2常见控件的使用方法
3.2.1TextView
3.2.2Button
3.2.3EditText
3.2.4ImageView
3.2.5ProgressBar
3.2.6AlertDialog
3.2.7ProgressDialog
3.3详解四种基本布局
3.3.1LinearLayout
3.3.2RelativeLayout
3.3.3FrameLayout
3.3.4TableLayout
3.4系统控件不够用?创建自定义控件
3.4.1引入布局
3.4.2创建自定义控件
3.5最常用和最难用的控件--ListView
3.5.1ListView的简单用法
3.5.2定制ListView的界面
3.5.3提升ListView的运行效率
3.5.4ListView的点击事件
3.6单位和尺寸
3.6.1px和pt的窘境
3.6.2dp和sp来帮忙
3.7编写界面的最佳实践
3.7.1制作Nine-Patch图片
3.7.2编写精美的聊天界面
3.8小结与点评
第4章手机平板要兼顾,探究碎片
4.1碎片是什么
4.2碎片的使用方式
4.2.1碎片的简单用法
4.2.2动态添加碎片
4.2.3在碎片中模拟返回栈
4.2.4碎片和活动之间进行通信
4.3碎片的生命周期
4.3.1碎片的状态和回调
4.3.2体验碎片的生命周期
4.4动态加载布局的技巧
4.4.1使用限定符
4.4.2使用最小宽度限定符
4.5碎片的最佳实践--一个简易版的新闻应用
4.6小结与点评
第5章全局大喇叭,详解广播机制
5.1广播机制简介
5.2接收系统广播
5.2.1动态注册监听网络变化
5.2.2静态注册实现开机启动
5.3发送自定义广播
5.3.1发送标准广播
5.3.2发送有序广播
5.4使用本地广播
5.5广播的最佳实践--实现强制下线功能
5.6Git时间,初识版本控制工具
5.6.1安装Git
5.6.2创建代码仓库
5.6.3提交本地代码
5.7小结与点评
第6章数据存储全方案,详解持久化技术
6.1持久化技术简介
6.2文件存储
6.2.1将数据存储到文件中
6.2.2从文件中读取数据
6.3SharedPreferences存储
6.3.1将数据存储到SharedPreferences中
6.3.2从SharedPreferences中读取数据
6.3.3实现记住密码功能
6.4SQLite数据库存储
6.4.1创建数据库
6.4.2升级数据库
6.4.3添加数据
6.4.4更新数据
6.4.5删除数据
6.4.6查询数据
6.4.7使用SQL操作数据库
6.5SQLite数据库的最佳实践
6.5.1使用事务
6.5.2升级数据库的最佳写法
6.6小结与点评
第7章跨程序共享数据,探究内容提供器
7.1内容提供器简介
7.2访问其他程序中的数据
7.2.1ContentResolver的基本用法
7.2.2读取系统联系人
7.3创建自己的内容提供器
7.3.1创建内容提供器的步骤
7.3.2实现跨程序数据共享
7.4Git时间,版本控制工具进阶
7.4.1忽略文件
7.4.2查看修改内容
7.4.3撤销未提交的修改
7.4.4查看提交记录
7.5小结与点评
第8章丰富你的程序,运用手机多媒体
8.1使用通知
8.1.1通知的基本用法
8.1.2通知的高级技巧
8.2接收和发送短信
8.2.1接收短信
8.2.2拦截短信
8.2.3发送短信
8.3调用摄像头和相册
8.3.1将程序运行到手机上
8.3.2调用摄像头拍照
8.3.3从相册中选择照片
8.4播放多媒体文件
8.4.1播放音频
8.4.2播放视频
8.5小结与点评
第9章后台默默的劳动者,探究服务
9.1服务是什么
9.2Android多线程编程
9.2.1线程的基本用法
9.2.2在子线程中更新UI
9.2.3解析异步消息处理机制
9.2.4使用AsyncTask
9.3服务的基本用法
9.3.1定义一个服务
9.3.2启动和停止服务
9.3.3活动和服务进行通信
9.4服务的生命周期
9.5服务的更多技巧
9.5.1使用前台服务
9.5.2使用IntentService
9.6服务的最佳实践--后台执行的定时任务
9.7小结与点评
第10章看看精彩的世界,使用网络技术
10.1WebView的用法
10.2使用HTTP协议访问网络
10.2.1使用HttpURLConnection
10.2.2使用HttpClient
10.3解析XML格式数据
10.3.1Pull解析方式
10.3.2SAX解析方式
10.4解析JSON格式数据
10.4.1使用JSONObject
10.4.2使用GSON
10.5网络编程的最佳实践
10.6小结与点评
第11章Android特色开发,基于位置的服务
11.1基于位置的服务简介
11.2找到自己的位置
11.2.1LocationManager的基本用法
11.2.2确定自己位置的经纬度
11.3反向地理编码,看得懂的位置信息
11.3.1Geocoding API的用法
11.3.2对经纬度进行解析
11.4使用百度地图
11.4.1申请API Key
11.4.2让地图显示出来
11.4.3定位到我的位置
11.4.4使用覆盖物来增加更多功能
11.5Git时间,版本控制工具的高级用法
11.5.1分支的用法
11.5.2与远程版本库协作
11.6小结与点评
第12章Android特色开发,使用传感器
12.1传感器简介
12.2光照传感器
12.2.1光照传感器的用法
12.2.2制作简易光照探测器
12.3加速度传感器
12.3.1加速度传感器的用法
12.3.2模仿微信摇一摇
12.4方向传感器
12.4.1方向传感器的用法
12.4.2制作简易指南针
12.5小结与点评
第13章继续进阶,你还应该掌握的高级技巧
13.1全局获取Context的技巧
13.2使用Intent传递对象
13.2.1Serializable方式
13.2.2Parcelable方式
13.3定制自己的日志工具
13.4调试Android程序
13.5编写测试用例
13.5.1创建测试工程
13.5.2进行单元测试
13.6总结
第14章进入实战,开发酷欧天气
14.1功能需求及技术可行性分析
14.2Git时间,将代码托管到GitHub上
14.3创建数据库和表
14.4遍历全国省市县数据
14.5显示天气信息
14.6切换城市和手动更新天气
14.7后台自动更新天气
14.8修改图标和名称
14.9你还可以做的事情
第15章最后一步,将应用发布到Google Play
15.1生成正式签名的APK文件
15.2申请Google Play账号
15.3上传和发布应用程序
15.4嵌入广告进行盈利
15.4.1注册有米账号和验证身份
15.4.2下载和接入有米SDK
15.4.3重新发布应用程序
15.5结束语

Book Abstract

1.1了解全貌,Android王国简介
Android从面世以来到现在已经发布了近二十个版本了。在这几年的发展过程中,谷歌为Android王国建立了一个完整的生态系统。手机厂商、开发者、用户之间相互依存,共同推进着Android的蓬勃发展。开发者在其中扮演着不可或缺的角色,因为再优秀的操作系统没有开发者来制作丰富的应用程序也是难以得到大众用户喜爱的,相信没有多少人能够忍受没有QQ、微信的手机吧?而谷歌推出的Google Play更是给开发者带来了大量的机遇,只要你能制作出优秀的产品,在Google Play上获得了用户的认可,你就完全可以得到不错的经济回报,从而成为一名独立开发者,甚至是成功创业!
那我们现在就以一个开发者的角度,去了解一下这个操作系统吧。纯理论型的东西也比较无聊,怕你看睡着了,因此我只挑重点介绍,这些东西跟你以后的开发工作都是息息相关的。
1.1.1Android系统架构
为了让你能够更好地理解Android系统是怎么工作的,我们先来看一下它的系统架构。Android大致可以分为四层架构,五块区域。
1. Linux内核层
Android系统是基于Linux 2.6内核的,这一层为Android设备的各种硬件提供了底层的驱动,如显示驱动、音频驱动、照相机驱动、蓝牙驱动、Wi-Fi驱动、电源管理等。
2. 系统运行库层
这一层通过一些C/C++库来为Android系统提供了主要的特性支持。如SQLite库提供了数据库的支持,OpenGL|ES库提供了3D绘图的支持,Webkit库提供了浏览器内核的支持等。
同样在这一层还有Android运行时库,它主要提供了一些核心库,能够允许开发者使用Java语言来编写Android应用。另外Android运行时库中还包含了Dalvik虚拟机,它使得每一个Android应用都能运行在独立的进程当中,并且拥有一个自己的Dalvik虚拟机实例。相较于Java虚拟机,Dalvik是专门为移动设备定制的,它针对手机内存、CPU性能有限等情况做了优化处理。
3. 应用框架层
这一层主要提供了构建应用程序时可能用到的各种API,Android自带的一些核心应用就是使用这些API完成的,开发者也可以通过使用这些API来构建自己的应用程序。
4. 应用层
所有安装在手机上的应用程序都是属于这一层的,比如系统自带的联系人、短信等程序,或者是你从Google Play上下载的小游戏,当然还包括你自己开发的程序。
结合图1.1你将会理解得更加深刻,图片源自维基百科。
……

Introduction

虽然我已经从事Android开发工作很多年了,但是却从来没有想过自己能去写一本Android技术相关的书籍。在我看来,一本书可以算是一个很庞大的工程,写一本好书的难度并不亚于开发一款好的应用程序。
而由于我长期坚持在CSDN上发表技术博文,得到了大量网友的认可,也积累了一点名气。很荣幸的,人民邮电出版社图灵公司的副总编辑陈冰先生联系上了我,希望我可以写一本关于Android开发技术的书籍,这着实让我感到受宠若惊。
之后的一年里,我在这本书上花了很大的心思。写书和写博客最大的区别在于,书的内容不能像博客那样散乱,想到哪里写到哪里,而是一定要系统化,讲究循序渐进,基本上在写第1章的时候就应该把全书的内容都确定下来。
在开始动笔之前,我甚至怀疑过自己是否真的能够完成这本书,而如今,它已经捧在你手中了,这让我非常地激动。我真诚地希望你可以用心去阅读完这本书,每多掌握一份知识,你就会多一份喜悦。
Enjoy it!
读者对象 本书的内容通俗易懂、由浅入深,既适合初学者阅读,也同样适合专业人员。学习本书内容之前你并不需要有任何的Android基础,但是你需要有一定的Java基础,因为Android开发都是使用Java语言的,而本书并不会去介绍Java方面的知识。
阅读本书时,你可以根据自身的情况来决定如何阅读。如果你是初学者的话,建议你从第1章开始循序渐进地阅读,这样理解起来就不会感到吃力。而如果你已经有了一定Android基础的话,也可以选择某部分你感兴趣的章节跳跃式地阅读,但请记得,很多章最后的最佳实践部分一定是你不想错过的。
本书内容 正如前面所说,本书的内容是非常系统化的,不仅全面介绍了那些你必须要掌握的知识,同时保证了每一章的难度都是梯度式上升的。本书一共分为15章,下面我们就先来预览下每章中你将会学到哪些知识。
第1章是最简单的入门章节,在这里你将会对Android有一个最初步的认识。另外,你还将在这里学会如何搭建Android开发环境,从而为后面的章节做准备。
第2章会介绍Android中最重要的一个组件——活动,不管你以前有没有接触过它,相信学完本章后你都会对活动有一个全新的认识。
第3章主要是对Android UI方面的知识进行讲解,你会学到Android中一些常见控件的用法,并且将懂得如何创建自定义控件。
第4章则是对碎片进行了全面的讲解,碎片是自Android 3.0之后引入的全新概念,目前已广泛应用于Android手机和平板的开发当中,不看后悔哦。
第5章会介绍Android中另一个重要的组件——广播接收器,你将学会接收和发送广播的方式,并且理解Android广播的工作原理。
第6章对Android中的本地数据存储技术进行了讲解,包括文件存储、SharedPreferences存储,以及数据库存储。
第7章会介绍Android中的另一个组件——内容提供器,比起前两个组件,内容提供器的应用场景少了很多,如果你对这个技术感兴趣的话可以研究研究,不喜欢的话也可以直接跳过。
第8章会介绍Android多媒体方面的知识,包括拍照、播放音乐、视频等。除此之外,在本章中你还将学会如何使用真机来调试程序。
第9章会介绍Android中最后一个重要的组件——服务,本章之后你将对Android多线程编程,以及服务功能有一个全面的认识。
第10章中介绍了Android网络编程相关的知识,主要讲解了如何使用HTTP协议来和服务器进行通信,以及解析服务器返回的数据,这也是Android网络编程中最常用的功能了。
第11章和第12章是Android特色开发部分,主要讲解了定位服务以及传感器的用法,这部分功能都是在传统PC上无法实现的,有兴趣的话可以多了解一下。
第13章指出了你还应该掌握的高级技巧,并进行了相应的讲解。这部分技巧在你日后的开发工作当中都有可能经常用到,希望可以引起你的重视。
第14章和第15章则将带着你一起编写一个完整的项目,并教会你如何打包、上架、嵌入广告等。通过整本书的学习,你将有能力开发出一款不错的应用程序,并能对它进行经营和盈利。
除此之外,本书的第5章、第7章、第11章、第14章中都穿插了对Git的讲解,如果想要掌握它的用法,这几章的内容是绝对不能错过的。
本书中各章的内容都相对比较独立,因此除了可以循序渐进学习之外,你也可以把它当成一本参考手册,随时查阅。
郭霖
2014年4月21日

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book