{{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

全面覆盖Android开发知识点
全真示例、循循善诱、轻松上手

Content Description

全面、实用、易懂,是本书的特色,根据美国大名鼎鼎的BigNerdRanch训练营的Android培训讲义编写而成,已经为微软、谷歌、Facebook等行业巨头培养了众多专业人才。作者巧妙地把Android开发所需的庞杂知识、行业实践、编程规范等融入一本书中,通过精心编排的应用示例、循序渐进的内容组织,以及循循善诱的语言,深入地讲解了Android开发的方方面面。如果学完一章之后仍然意犹未尽,那“挑战练习”一定会让你大呼过瘾。本书之所以能在移动应用开发类图书中脱颖而出,还在于它真的是在与读者“对话”。阅读本书就好像有一位私人导师在你身边随时为你答疑解惑。
本书适合所有对Android及移动开发感兴趣的读者,需要一定的Java编程基础。
Author Description

Bill Phillips,Big Nerd Ranch Android讲师、高级软件工程师。他与Brian Hardy合作,为Big Nerd Ranch开发了广受好评的5天Android训练营培训课程。Bill擅长透彻地理解事物的本质,并帮助其他人做到这一点。闲暇时间,Bill喜欢阅读和弹钢琴。

Brian Hardy,Big Nerd Ranch首席软件工程师、讲师。Big Nerd Ranch的Android、iOS和Ruby培训课程均由Brian设计开发。闲暇时间,Brian喜欢骑自行车和听音乐。
Comments

★“对我们来说,这是一本非常全面的培训教材,它已使数百名工程师掌握了构建Android应用的诀窍。另外,对想要提升Android开发技能的人,这本书同样也有很大帮助。”
——Mike Shaver,Facebook通信工程主管

★“不管是你刚刚迈进Android开发的大门,还是准备掌握更多高级开发技术,本书都非常值得看。它那完整的内容体系、清晰的组织结构,以及轻松的讲述风格,都让人过目不忘。”
——James Steele,《Android开发秘籍》作者
Catalogue

第1章Android应用初体验
1.1 应用基础
1.2 创建Android项目
1.3 Eclipse工作区导航
1.4 用户界面设计
1.4.1 视图层级结构
1.4.2 组件属性
1.4.3 创建字符串资源
1.4.4 预览界面布局
1.5 从布局XML到视图对象
1.6 组件的实际应用
1.6.1 类包组织导入
1.6.2 引用组件
1.6.3 设置监听器
1.7 使用模拟器运行应用
1.8 Android编译过程

第2章Android与MVC设计模式
2.1 创建新类
2.2 Android与MVC设计模式
2.3 更新视图层
2.4 更新控制层
2.5 在设备上运行应用
2.5.1 连接设备
2.5.2 配置设备用于应用开发
2.6 添加图标资源
2.6.1 向项目中添加资源
2.6.2 在XML文件中引用资源
2.7 关于挑战练习
2.8 挑战练习一:为TextView添加监听器
2.9 挑战练习二:添加后退按钮
2.10 挑战练习三:从按钮到图标按钮

第3章Activity的生命周期
3.1 日志跟踪理解Activity生命周期
3.1.1 输出日志信息
3.1.2 使用 LogCat
3.2 设备旋转与Activity生命周期
3.3 设备旋转前保存数据
3.4 再探Activity生命周期
3.5 深入学习:测试onSaveInstanceState-(Bundle)方法
3.6 深入学习:日志记录的级别与方法

第4章Android应用的调试
4.1 DDMS应用调试透视图
4.2 异常与栈跟踪
4.2.1 诊断应用异常
4.2.2 记录栈跟踪日志
4.2.3 设置断点
4.2.4 使用异常断点
4.3 文件浏览器
4.4 Android特有的调试工具
4.4.1 使用Android Lint
4.4.2 R类的问题

第5章第二个activity
5.1 创建第二个activity
5.1.1 创建新布局
5.1.2 创建新的activity子类
5.1.3 在manifest配置文件中声明activity
5.1.4 为QuizActivity添加cheat按钮
5.2 启动activity
5.3 activity间的数据传递
5.3.1 使用intent extra
5.3.2 从子activity获取返回结果
5.4 activity的使用与管理
5.5 挑战练习

第6章Android SDK版本与兼容
6.1 Android SDK版本
6.2 Android编程与兼容性问题
6.2.1 全新的系统版本--Honeycomb
6.2.2 SDK最低版本
6.2.3 SDK目标版本
6.2.4 SDK编译版本
6.2.5 安全添加新版本API中的代码
6.3 使用Android开发者文档
6.4 挑战练习:报告编译版本

第7章UI fragment与fragment 管理器
7.1 UI设计的灵活性需求
7.2 fragment的引入
7.3 着手开发CriminalIntent
7.3.1 创建新项目
7.3.2 fragment与支持库
7.3.3 创建Crime类
7.4 托管UI fragment
7.4.1 fragment的生命周期
7.4.2 托管的两种方式
7.4.3 定义容器视图
7.5 创建UI fragment
7.5.1 定义CrimeFragment的布局
7.5.2 创建CrimeFragment类
7.6 添加UI fragment到FragmentManager
7.6.1 fragment事务
7.6.2 FragmentManager与fragment生命周期
7.7 activity使用fragment的理由
7.8 深入学习:Honeycomb、ICS、Jelly Bean以及更高版本系统上的应用开发

第8章使用布局与组件创建用户界面
8.1 升级Crime类
8.2 更新布局
8.3 生成并使用组件
8.4 深入探讨XML布局属性
8.4.1 样式、主题及主题属性
8.4.2 dp、sp以及屏幕像素密度
8.4.3 Android开发设计原则
8.4.4 布局参数
8.4.5 边距与内边距
8.5 使用图形布局工具
8.5.1 添加新组件
8.5.2 属性视图中编辑组件属性
8.5.3 在框架视图中重新组织组件
8.5.4 更新子组件的布局参数
8.5.5android:layout_weight属性的工作原理
8.5.6 图形布局工具使用总结
8.5.7 组件ID与多种布局
8.6 挑战练习:日期格式化

第9章使用ListFragment显示列表
9.1 更新CriminalIntent应用的模型层
9.2 创建ListFragment
9.3 使用抽象activity托管fragment
9.3.1 通用的fragment托管布局
9.3.2 抽象activity类
9.4 ListFragment、ListView及ArrayAdapter
9.4.1 创建ArrayAdapter类实例
9.4.2 响应列表项的点击事件
9.5 定制列表项
9.5.1 创建列表项布局
9.5.2 创建adapter子类

第10章使用fragment argument
10.1 从fragment中启动activity
10.1.1 附加extra信息
10.1.2 获取extra信息
10.1.3 使用Crime数据更新CrimeFragment视图
10.1.4 直接获取extra信息方式的缺点
10.2 fragment argument
10.2.1 附加argument给fragment
10.2.2 获取argument
10.3 重新加载显示列表项
10.4 通过fragment获取返回结果

第11章使用ViewPager
11.1 创建CrimePagerActivity
11.1.1 以代码的方式定义并产生布局
11.1.2 ViewPager与Pager-Adapter
11.1.3 整合配置并使用CrimePagerActivity
11.1.4 FragmentStatePager-Adapter与Fragment-PagerAdapter
11.2 深入学习:ViewPager的工作原理

第12章对话框
12.1 创建DialogFragment
12.1.1 显示DialogFragment
12.1.2 设置对话框的显示内容
12.2 fragment间的数据传递
12.2.1 传递数据给DatePicker-Fragment
12.2.2 返回数据给CrimeFragment
12.3 挑战练习:更多对话框

第13章使用MediaPlayer播放音频
13.1 添加资源
13.2 定义HelloMoonFragment布局文件
13.3 创建HelloMoonFragment
13.4 使用布局fragment
13.5 音频播放
13.6 挑战练习:暂停音频播放
13.7 深入学习:播放视频
13.8 挑战练习:在HelloMoon应用中播放视频

第14章fragment的保留
14.1 保留fragment实例
14.2 设备旋转与保留的fragment
14.3 保留的fragment:一切都完美了吗
14.4 设备旋转处理与onSaveInstance-State(Bundle)方法
14.5 深入学习:fragment引入前的设备旋转问题

第15章应用本地化
15.1 本地化资源
15.2 配置修饰符
15.2.1 可用资源优先级排定
15.2.2 多重配置修饰符
15.2.3 寻找最匹配的资源
15.3 更多资源使用原则及控制
15.3.1 资源命名
15.3.2 资源目录结构
15.4 测试备选资源

第16章操作栏
16.1 选项菜单
16.1.1 在XML文件中定义选项菜单
16.1.2 创建选项菜单
16.1.3 响应菜单项选择
16.2 实现层级式导航
16.2.1 启用应用图标的导航功能
16.2.2 响应向上按钮
16.3 可选菜单项
16.3.1 创建可选菜单XML文件
16.3.2 切换菜单项标题
16.3.3 "还有个问题"
16.4 挑战练习:用于列表的空视图

第17章存储与加载本地文件
17.1 CriminalIntent应用的数据存取
17.1.1 保存crime数据到JSON文件
17.1.2 从文件中读取crime数据
17.2 挑战练习:使用外部存储
17.3 深入学习:Android文件系统与Java I/O

第18章上下文菜单与上下文操作模式
18.1 定义上下文菜单资源
18.2 实施浮动上下文菜单
18.2.1 创建上下文菜单
18.2.2 为上下文菜单登记视图
18.2.3 响应菜单项选择
18.3 实施上下文操作模式
18.3.1 实现列表视图的多选操作
18.3.2 列表视图中的操作模式回调方法
18.3.3 改变已激活视图的显示背景
18.3.4 实现其他视图的上下文操作模式
18.4 兼容性问题:回退还是复制
18.5 挑战练习:在CrimeFragment视图中删除crime记录
18.6 深入学习:ActionBarSherlock
18.7 挑战练习:使用ActionBarSherlock
18.7.1 CriminalIntent应用中ABS的基本整合
18.7.2 ABS的深度整合
18.7.3 ABS的完全整合

第19章相机I:取景器
19.1 创建Fragment布局
19.2 创建CrimeCameraFragment
19.3 创建CrimeCameraActivity
19.4 使用相机API
19.4.1 打开并释放相机
19.4.2 SurfaceView、Surface-Holder与Surface
19.4.3 确定预览界面大小
19.4.4 启动CrimeCamera-Activity
19.5 深入学习:以命令行的方式运行activity

第20章相机 II:拍摄并处理照片
20.1 拍摄照片
20.1.1 实现相机回调方法
20.1.2 设置图片尺寸大小
20.2 返回数据给CrimeFragment
20.2.1 以接收返回值的方式启动CrimeCameraActivity
20.2.2 在CrimeCameraFragment中设置返回值
20.2.3 在CrimeFragment中获取照片文件名
20.3 更新模型层
20.3.1 新增Photo类
20.3.2 为Crime添加photo属性
20.3.3 设置photo属性
20.4 更新CrimeFragment的视图
20.4.1 添加ImageView组件
20.4.2 图像处理
20.5 在DialogFragment中显示大图片
20.6 挑战练习:Crime照片的显示方向
20.7 挑战练习:删除照片
20.8 深入学习:Android代码的废弃处理

第21章隐式intent
21.1 添加按钮组件
21.2 添加嫌疑人信息至模型层
21.3 使用格式化字符串
21.4 使用隐式intent
21.4.1 典型隐式intent的组成
21.4.2 发送陋习报告
21.4.3 获取联系人信息
21.4.4 检查可以响应的activity
21.5 挑战练习:又一个隐式intent

第22章Master-Detail用户界面
22.1 增加布局灵活性
22.1.1 修改SingleFragment-Activity
22.1.2 创建包含两个fragment容器的布局
22.1.3 使用别名资源
22.2 Activity:fragment的托管者
22.3 深入学习:设备屏幕尺寸的确定

第23章深入学习intent和任务
23.1 创建NerdLauncher项目
23.2 解析隐式intent
23.3 在运行时创建显式intent
23.4 任务与后退栈
23.5 使用NerdLauncher应用作为设备主屏幕
23.6 挑战练习:应用图标与任务重排
23.7 进程与任务

第24章样式与include标签的使用
24.1 创建RemoteControl项目
24.1.1 编码实现RemoteControl-Activity
24.1.2 创建RemoteControl-Fragment
24.2 使用样式消除重复代码
24.3 完善布局定义
24.4 深入学习:使用include与merge标签
24.5 挑战练习:样式的继承

第25章XML Drawable与9-Patches
25.1 XML drawable
25.2 state list drawable
25.3 layer list与inset drawable
25.4 使用9-patch图像

第26章HTTP与后台任务
26.1 创建PhotoGallery应用
26.2 网络连接基本
26.3 使用AsyncTask在后台线程上运行代码
26.4 线程与主线程
26.5 获取Flickr XML数据
26.6 从AsyncTask回到主线程
26.7 深入学习:再探AsyncTask
26.8 挑战练习:分页

第27章Looper、Handler与HandlerThread
27.1 设置GridView以显示图片
27.2 批量下载缩略图
27.3 与主线程通信
27.4 创建并启动后台线程
27.5 Message与message Handler
27.5.1 消息的剖析
27.5.2 Handler的剖析
27.5.3 使用handler
27.5.4 传递handler
27.6 深入学习:AsyncTask与Thread
27.7 挑战练习:预加载以及缓存

第28章搜索
28.1 搜索Flickr网站
28.2 搜索对话框
28.2.1 创建搜索界面
28.2.2 可搜索的activity
28.2.3 物理搜索键
28.2.4 搜索的工作原理
28.2.5 启动模式与新的intent
28.2.6 使用shared preferences实现轻量级数据存储
28.3 在Android 3.0以后版本的设备上使用SearchView
28.4 挑战练习

第29章后台服务
29.1 创建IntentService
29.2 服务的作用
29.3 查找最新返回结果
29.4 使用AlarmManager延迟运行服务
29.4.1 PendingIntent
29.4.2 使用PendingIntent管理定时器
29.5 控制定时器
29.6 通知信息
29.7 深入学习:服务细节内容
29.7.1 服务的能与不能
29.7.2 服务的生命周期
29.7.3 non-sticky服务
29.7.4 sticky服务
29.7.5 绑定服务

第30章broadcast Intent
30.1 随设备重启而重启的定时器
30.1.1 配置文件中的broadcast receiver
30.1.2 如何使用receiver
30.2 过滤前台通知消息
30.2.1 发送broadcast intent
30.2.2 动态broadcast receiver
30.2.3 使用私有权限
30.2.4 使用ordered broadcast接收结果
30.3 receiver与长时运行任务

第31章网页浏览
31.1 最后一段Flickr数据
31.2 简单方式:使用隐式intent
31.3 较难方式:使用WebView
31.3.1 使用WebChromeClient优化WebView的显示
31.3.2 处理WebView的设备旋转问题
31.4 深入学习:注入JavaScript对象

第32章定制视图与触摸事件
32.1 创建DragAndDraw项目
32.1.1 创建DragAndDraw-Activity
32.1.2 创建DragAndDraw-Fragment
32.2 创建定制视图
32.3 处理触摸事件
32.4 onDraw(...)方法内的图形绘制
32.5 挑战练习:设备旋转问题

第33章跟踪设备的地理位置
33.1 启动RunTracker项目
33.1.1 创建RunActivity
33.1.2 创建RunFragment
33.2 地理位置与LocationManager
33.3 接收定位数据更新broadcast
33.4 使用定位数据刷新UI显示
33.5 快速定位:最近一次地理位置
33.6 在物理和虚拟设备上测试地理位置定位

第34章使用SQLite本地数据库
34.1 在数据库中存储旅程和地理位置信息
34.2 查询数据库中的旅程列表
34.3 使用CursorAdapter显示旅程列表
34.4 创建新旅程
34.5 管理现有旅程
34.6 挑战练习:识别当前跟踪的旅程

第35章使用Loader加载异步数据
35.1 Loader与LoaderManager
35.2 在RunTracker应用中使用Loader
35.3 加载旅程列表
35.4 加载单个旅程
35.5 加载旅程的最近一次地理位置

第36章使用地图
36.1 添加Maps API给RunTracker应用
36.1.1 使用物理设备测试地图
36.1.2 安装使用Google Play services SDK
36.1.3 获取Google Maps API key
36.1.4 更新RunTracker应用的manifest配置文件
36.2 在地图上显示用户的地理位置
36.3 显示旅程路线
36.4 为旅程添加开始和结束地图标注
36.5 挑战练习:实时数据更新

第37章编后语
37.1 终极挑战
37.2 关于我们
37.3 致谢
Book Abstract

根Linea rLayout组件的高度与宽度属性值均为match—parent。Linea rLayout虽然是根元素,但它也有父视图(View)——Android提供该父视图来容纳应用的整个视图层级结构。
其他包含在界面布局中的组件,其高度与宽度属性值均被设置为wrap_content。请参照图1—9理解该属性值定义尺寸大小的作用。
TextView组件比其包含的文字内容区域稍大一些,这主要是android:padding=“24dp”属性的作用。该属性告诉组件在决定大小时,除内容本身外,还需增加额外指定量的空间。这样屏幕上显示的问题与按钮之间便会留有一定的空间,使整体显得更为美观。(不理解dp的意思?dp即density—independent pixel,指与设备无关的像素,第8章将介绍有关它的概念。)
2.and roid:orientation属性
and roid:orientation属性是两个Linea rLayout组件都具有的属性,决定了二者的子组件是水平放置的还是垂直放置的。根Linea rLayout是垂直的,子Linea rLayout是水平的。
Linea rLayout子组件的定义顺序决定着其在屏幕上显示的顺序。在竖直的Linea rLayout中,第一个定义的子组件出现在屏幕的最上端。而在水平的LinearLayout中,第一个定义的子组件出现在屏幕的最左端。(如果设备语言为从右至左显示,如Arabic或者Hebrew,第一个定义的子组件则出现在屏幕的最右端。)
3.and roid:text属性
TextView与Button组件具有and roid:text属性。该属性指定组件显示的文字内容。
请注意,android:text属性值不是字符串字面值,而是对字符串资源(s仃ingresources)的引用。
字符串资源包含在一个独立的名为strings的XML文件中,虽然可以硬编码设置组件的文本属性,如android:text=“True”,但这通常不是个好方法。将文字内容放置在独立的字符串资源XML文件中,然后引用它们才是好方法。在第15章中,我们将学习如何使用字符串资源轻松实现本地化。
需要在activity quiz.xml文件中引用的字符串资源目前还不存在。现在我们来添加这些资源。
1.4.3创建字符串资源
每个项目都包含一个名为strings.xml的默认字符串文件。
在包浏览器中,找到res/values目录,点击小三角显示目录内容,然后打开strings.xml文件。忽略图形界面,在编辑区底部选择strings.xml标签页,切换到代码界面。
可以看到,项目模版已经默认添加了一些字符串资源。删除不需要的hello_world部分,添加应用布局需要的三个新的字符串,如代码清单1—3所示。
Introduction

【译者序】

2007年,苹果公司发布了革命性的iPhone,自此开启了智能手机的新时代。随后,2008年,谷歌公司和开放手机联盟共同开发并推出了Android智能手机。时至今日,移动智能设备不仅深刻影响了智能手机行业,也改变了整个科技产业以及人们生活的方方面面,在全球掀起巨大的移动浪潮。

迎着这股浪潮,国际巨头、创业公司、独立开发者各展身手,奋力搏击,抢登浪潮之巅。苹果一度成了全球市值最高的公司,三星则是卖出了数亿部Android手机。2013年,百度以19亿美元的价格收购了91无线。2014年开春,Facebook更是以190亿美元的天价收购了开发WhatsApp应用仅有50名员工的公司,直接把这股移动浪潮推到了巅峰。

豪不夸张地说,所有这一切都离不开移动软件的开发。目前主流的开发平台是苹果的iOS系统和谷歌的Android系统。凭借精美绝伦的UI、流畅顺滑的交互体验,iOS开发在早期抢占了先机。但如今,谷歌在Android系统UI设计及优化方面的前进步伐已赶超苹果在创新方面的进步。越来越多的软件人开始投身Android应用开发阵营。对于业余爱好者来说,Android还是iOS,喜欢谁就选谁。而对于专业开发人员,果粉也好,Android迷也罢,从职业发展及商业利益角度来说,掌握双平台开发是必须的。

作为荣获2012 Jolt 生产力大奖的iOS编程教程的姊妹篇,Big Nerd Ranch公司再接再厉,推出了这本《Android编程权威指南》。英文版甫一上架立即赢得了Amazon读者的广泛赞誉。本书基于Big Nerd Ranch公司的Bootcamp教程编写而成。Big Nerd Ranch创办于2001年,是美国一家知名IT培训公司,每年为微软、谷歌、Faceboook等行业巨头培养众多专业人才。而BootCamp在英文中原意为美国海军陆战队新兵训练营,应用于IT培训行业中,意指通过全真IT项目实战,培训出像美国海军陆战队员那样优秀的IT人才。

本书适合有一定Java编程经验(至少熟悉Java)并对Android开发感兴趣的读者阅读。本书最大的特点是,从Android应用的基本概念及组成开始介绍直至完成一个复杂实用的谷歌地图应用,作者巧妙地把Android开发所需的庞杂知识、行业实践、编程规范等融入本书,并以一种润物无声的导学方式引领读者轻松完成全书的开发学习。第26章在讲解后台任务和线程时,作者寓教于乐,还精心安排了在鞋店工作的闪电侠案例,既能帮助读者形象地理解复杂抽象概念,又让人印象深刻,难以忘却。类似这样的案例、幽默全书俯拾皆是,还是等读者自己去发掘吧。另外,几乎每章都配有深入学习及难度逐步升级的挑战练习版块。深入学习意在让读者进一步掌握本章关键知识点并指明学习更高级主题的方向;挑战练习能够让读者立即获得练手的机会,通过练习巩固运用所学知识。学完本书,在实际开发中,读者自然而然就会知道该做什么,如何去做以及为什么这样做。

最后,感谢图灵各位编辑老师的辛勤工作,尤其感谢李静老师的细心指导,本书及本人都获益良多。更要感谢的是我的clover和千寻,没有他们的宽容、理解与支持,本书译稿不可能完成。

虽然我已尽力传达原作本意并保证译稿的较高质量,但有时拼写错误、因版本升级而导致某些内容不再适用,甚至是囿于个人水平而犯错的情况再所难免。如果你发现了问题或有好的建议,请批评指正。

2014年2月28日于上海

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