{{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讲义(第3版 附光盘)

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

疯狂Android讲义(第3版 附光盘)

{{__(":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

基于Android5全新升级《疯狂Android讲义》
自面市以来重印20+次,发行量超10万册,并屡获殊荣!
开卷数据显示2014年度Android图书排行榜前三
曾获评CSDN年度具有技术影响力十大原创图书
多次荣获年度畅销图书及长销图书大奖

Content Description

移动互联网是当今世界发展快、市场潜力大、前景诱人的一项业务,而Android则是移动互联网上市场占有率很高的平台。
本书是《疯狂Android讲义》的第3版,本书基于新的Android5,并采用了Google推荐的IDE:AndroidStudio作为开发工具,书中每个案例、每个截图都全面升级到Android5。本书全面介绍了Android应用开发的相关知识,全书内容覆盖了Android用户界面编程、Android四大组件、Android资源访问、图形/图像处理、事件处理机制、Android输入/输出处理、音频/视频多媒体应用开发、OpenGL与3D应用开发、网络通信编程、Android平台的WebService、传感器应用开发、GPS应用开发、整合第三方Map服务等。
本书并不局限于介绍Android编程的各种理论知识,而是从“项目驱动”的角度来讲授理论,全书一共包括近百个实例,这些示范性的实例既可帮助读者更好地理解各知识点在实际开发中的应用,也可供读者在实际开发时作为参考、拿来就用。本书最后还提供了两个实用的案例:合金弹头和电子拍卖系统Android客户端,具有极高的参考价值。本书提供了配套的答疑网站,如果读者在阅读本书时遇到了技术问题,可以登录疯狂Java联盟发帖,笔者将会及时予以解答。

Author Description

李刚,十余年软件开发从业经验,疯狂软件教育中心教学总监。疯狂Java实训营创始人,疯狂Java体系原创图书作者。广东技术师范学院计算机科学系兼职副教授,51CTO专家门诊特邀嘉宾。培训的学生已在华为、IBM、阿里软件、网易、电信盈科等名企就职。国内著名高端IT技术图书作家,已出版《疯狂Java讲义》、《疯狂Android讲义》、《轻量级Java EE企业应用实战》、《疯狂iOS讲义(上)(下)》、《疯狂Ajax讲义》、《疯狂XML讲义》、《经典Java EE企业应用实战》、《疯狂HTML 5/CSS 3/JavaScript讲义》等著作。其中疯狂Java体系图书均已沉淀多年,赢得极高的市场认同,多次重印成为超级畅销图书,并被多所“985”、“211”高校选作教材,部分图书已被翻译成繁体中文版,授权到台湾地区。

Catalogue

第1章Android应用和开发环境 1
1.1Android的发展和历史 2
1.1.1Android的发展和简介 2
1.1.2Android 5.x平台架构及特性 3
1.2搭建Android开发环境 5
1.2.1安装Android Studio 5
1.2.2下载和安装Android SDK 8
1.2.3安装运行、调试环境 11
1.3Android常用开发工具的用法 16
1.3.1在命令行创建、删除和浏览AVD 16
1.3.2使用Android模拟器(Emulator) 17
1.3.3使用Monitor进行调试 18
1.3.4Android Debug Bridge(ADB)的用法 19
1.3.5使用mksdcard管理虚拟SD卡 20
1.4开始第一个Android应用 21
1.4.1使用Android Studio开发第一个Android应用 21
1.4.2通过Andorid Studio运行Android应用 24
1.5Android应用结构分析 25
1.5.1创建一个Android应用 25
1.5.2自动生成的R.java 28
1.5.3res目录说明 29
1.5.4Android应用的清单文件:AndroidManifest.xml 30
1.5.5应用程序权限说明 31
1.6Android应用的基本组件介绍 32
1.6.1Activity和View 32
1.6.2Service 33
1.6.3BroadcastReceiver 33
1.6.4ContentProvider 33
1.6.5Intent和IntentFilter 34
1.7签名Android应用程序 35
1.7.1使用Android Studio对Android应用签名 35
1.7.2使用命令对APK包签名 36
1.8本章小结 37

第2章Android应用的界面编程 38
2.1界面编程与视图(View)组件 39
2.1.1视图组件与容器组件 39
2.1.2使用XML布局文件控制UI界面 44
2.1.3在代码中控制UI界面 44
实例:用编程的方式开发UI界面 44
2.1.4使用XML布局文件和Java代码混合控制UI界面 46
实例:简单图片浏览器 46
2.1.5开发自定义View 47
实例:跟随手指的小球 48
2.2第1组UI组件:布局管理器 49
2.2.1线性布局 50
2.2.2表格布局 52
实例:丰富的表格布局 53
2.2.3帧布局 55
实例:霓虹灯效果 57
2.2.4相对布局 58
实例:梅花布局效果 59
2.2.5网格布局 60
实例:计算器界面 61
2.2.6绝对布局 62
实例:登录界面 63
2.3第2组UI组件:TextView及其子类 64
2.3.1文本框(TextView)与编辑框(EditText)的功能和用法 64
实例:不同颜色、字体、带链接的文本 67
实例:圆角边框、渐变背景的TextView 68
2.3.2EditText的功能与用法 70
实例:用户友好的输入界面 70
2.3.3按钮(Button)组件的功能与用法 72
实例:按钮、圆形按钮、带文字的图片按钮 72
2.3.4使用9Patch图片作为背景 73
2.3.5单选钮(RadioButton)和复选框(CheckBox)的功能与用法 74
实例:利用单选钮、复选框获取用户信息 75
2.3.6状态开关按钮(ToggleButton)和开关(Switch)的功能与用法 77
实例:动态控制布局 77
2.3.7时钟(AnalogClock和TextClock)的功能与用法 79
实例:手机里的“劳力士” 79
2.3.8计时器(Chronometer) 80
2.4第3组UI组件:ImageView及其子类 81
实例:图片浏览器 83
实例:强大的图片按钮 86
实例:使用QuickContactBadge关联联系人 87
2.5第4组UI组件:AdapterView及子类 88
2.5.1列表视图(ListView)和ListActivity 89
实例:改变分隔条、基于数组的ListView 90
2.5.2Adapter接口及实现类 91
实例:使用ArrayAdapter创建ListView 91
实例:基于ListActivity实现列表 93
实例:使用SimpleAdapter创建ListView 94
实例:扩展BaseAdapter实现不存储列表项的ListView 97
2.5.3自动完成文本框(AutoCompleteTextView)的功能与用法 98
2.5.4网格视图(GridView)的功能与用法 100
实例:带预览的图片浏览器 101
2.5.5可展开的列表组件(ExpandableListView) 103
2.5.6Spinner的功能与用法 106
实例:让用户选择 106
2.5.7AdapterViewFlipper的功能与用法 108
实例:自动播放的图片库 108
2.5.8StackView的功能与用法 111
实例:叠在一起的图片 111
2.6第5组UI组件:ProgressBar及其子类 112
2.6.1进度条(ProgressBar)的功能与用法 113
实例:显示在标题上的进度条 116
2.6.2拖动条(SeekBar)的功能与用法 117
实例:通过拖动滑块来改变图片的透明度 117
2.6.3星级评分条(RatingBar)的功能与用法 118
实例:通过星级改变图片的透明度 119
2.7第6组UI组件:ViewAnimator及其子类 120
2.7.1ViewSwitcher的功能与用法 120
实例:仿Android系统Launcher界面 120
2.7.2图像切换器(ImageSwitcher)的功能与用法 125
实例:支持动画的图片浏览器 125
2.7.3文本切换器(TextSwitcher)的功能与用法 127
2.7.4ViewFlipper的功能与用法 129
实例:自动播放的图片库 129
2.8各种杂项组件 131
2.8.1使用Toast显示提示信息框 131
实例:带图片的消息提示 131
2.8.2日历视图(CalendarView)组件的功能和用法 133
实例:选择您的生日 133
2.8.3日期、时间选择器(DatePicker和TimePicker)的功能和用法 134
实例:用户选择日期、时间 135
2.8.4数值选择器(NumberPicker)的功能与用法 137
实例:选择您意向的价格范围 137
2.8.5搜索框(SearchView)的功能与用法 139
实例:搜索 139
2.8.6选项卡(TabHost)的功能和用法 141
实例:通话记录界面 141
2.8.7滚动视图(ScrollView)的功能和用法 143
实例:可垂直和水平滚动的视图 144
2.8.8Notification的功能与用法 144
实例:加薪通知 145
2.9第7组UI组件:对话框 146
2.9.1使用AlertDialog创建对话框 147
实例:显示提示消息的对话框 147
实例:简单列表项对话框 149
实例:单选列表项对话框 149
实例:多选列表项对话框 150
实例:自定义列表项对话框 151
实例:自定义View对话框 152
2.9.2对话框风格的窗口 154
2.9.3使用PopupWindow 155
2.9.4使用DatePickerDialog、TimePickerDialog 156
2.9.5使用ProgressDialog创建进度对话框 158
2.10菜单 160
2.10.1选项菜单和子菜单(SubMenu) 161
2.10.2使用监听器来监听菜单事件 164
2.10.3创建多选菜单项和单选菜单项 164
2.10.4设置与菜单项关联的Activity 165
2.10.5上下文菜单 166
2.10.6使用XML文件定义菜单 167
实例:使用XML资源文件定义菜单 168
2.10.7使用PopupMenu创建弹出式菜单 171
2.11使用活动条(ActionBar) 173
2.11.1启用ActionBar 173
2.11.2使用ActionBar显示选项菜单项 174
2.11.3启用程序图标导航 176
2.11.4添加Action View 177
实例:“标题”上的时钟 177
2.11.5使用ActionBar实现Tab导航 178
实例:ActionBar结合Fragment实现Tab导航 179
实例:Android 3.0以前的Fragment支持 182
2.11.6使用ActionBar实现下拉式导航 185
实例:ActionBar结合Fragment实现下拉式导航 185
2.12本章小结 187
第3章Android的事件处理 188
3.1Android事件处理概述 189
3.2基于监听的事件处理 189
3.2.1监听的处理模型 189
3.2.2事件和事件监听器 192
实例:控制飞机移动 192
3.2.3内部类作为事件监听器类 195
3.2.4外部类作为事件监听器类 195
3.2.5Activity本身作为事件监听器类 197
3.2.6匿名内部类作为事件监听器类 197
3.2.7直接绑定到标签 198
3.3基于回调的事件处理 199
3.3.1回调机制与监听机制 199
3.3.2基于回调的事件传播 201
3.3.3重写onTouchEvent方法响应触摸屏事件 202
实例:通过回调实现跟随手指的小球 203
3.4响应系统设置的事件 204
3.4.1Configuration类简介 204
实例:获取系统设备状态 205
3.4.2重写onConfigurationChanged方法响应系统设置更改 206
实例:监听屏幕方向的改变 206
3.5Handler消息传递机制 208
3.5.1Handler类简介 208
实例:自动播放动画 209
3.5.2Handler、Loop、MessageQueue的工作原理 210
实例:使用新线程计算质数 211
3.6异步任务(AsyncTask) 213
实例:使用异步任务执行下载 214
3.7本章小结 217
第4章深入理解Activity与Fragment 218
4.1建立、配置和使用Activity 219
4.1.1Activity 219
实例:用LauncherActivity开发启动Activity的列表 220
实例:使用ExpandableListActivity
实现可展开的Activity 221
实例:PreferenceActivity结合PreferenceFragment实现参数设置界面 223
4.1.2配置Activity 227
4.1.3启动、关闭Activity 229
4.1.4使用Bundle在Activity之间交换数据 231
实例:用第二个Activity处理注册信息 232
4.1.5启动其他Activity并返回结果 235
实例:用第二个Activity让用户选择信息 235
4.2Activity的回调机制 239
4.3Activity的生命周期与加载模式 240
4.3.1Activity的生命周期演示 240
4.3.2Activity与Servlet的相似性和区别 243
4.3.3Activity的4种加载模式 244
4.4Fragment详解 249
4.4.1Fragment概述及其设计初衷 249
4.4.2创建Fragment 250
实例:开发显示图书详情的Fragment 251
实例:创建ListFragment 253
4.4.3Fragment与Activity通信 254
4.4.4Fragment管理与Fragment事务 256
实例:开发兼顾屏幕分辨率的应用 257
4.5Fragment的生命周期 260
4.6本章小结 264
第5章使用Intent和IntentFilter进行通信 265
5.1Intent对象简述 266
5.2Intent的属性及intent-filter配置 267
5.2.1Component属性 267
5.2.2Action、Category属性与intent-filter配置 269
5.2.3指定Action、Category调用系统Activity 273
实例:查看并获取联系人电话 274
实例:返回系统Home桌面 277
5.2.4Data、Type属性与intent-filter配置 278
实例:使用Action、Data属性启动系统Activity 284
5.2.5Extra属性 286
5.2.6Flag属性 286
5.3使用Intent创建Tab页 287
5.4本章小结 288
第6章Android应用的资源 289
6.1应用资源概述 290
6.1.1资源的类型以及存储方式 290
6.1.2使用资源 291
6.2字符串、颜色、尺寸资源 293
6.2.1颜色值的定义 293
6.2.2定义字符串、颜色、尺寸资源文件 294
6.2.3使用字符串、颜色、尺寸资源 295
6.3数组(Array)资源 298
6.4使用Drawable资源 300
6.4.1图片资源 300
6.4.2StateListDrawable资源 301
实例:高亮显示正在输入的文本框 301
6.4.3LayerDrawable资源 302
实例:定制拖动条的外观 303
6.4.4ShapeDrawable资源 304
实例:椭圆形、渐变背景的文本框 305
6.4.5ClipDrawable资源 306
实例:徐徐展开的风景 306
6.4.6AnimationDrawable资源 308
6.5属性动画(Property Animation)资源 310
实例:不断渐变的背景色 311
6.6使用原始XML资源 312
6.6.1定义原始XML资源 312
6.6.2使用原始XML文件 313
6.7使用布局(Layout)资源 314
6.8使用菜单(Menu)资源 315
6.9样式(Style)和主题(Theme)资源 315
6.9.1样式资源 315
6.9.2主题资源 316
实例:给所有窗口添加边框、背景 317
6.9.3Android 5.0新增的Material主题 318
6.10属性(Attribute)资源 318
6.11使用原始资源 321
6.12国际化和资源自适应 323
6.12.1Java国际化的思路 323
6.12.2Java支持的国家和语言 324
6.12.3完成程序国际化 324
6.12.4为Android应用提供国际化资源 326
6.12.5国际化Android应用 327
6.13自适应不同屏幕的资源 329
6.14本章小结 332
第7章图形与图像处理 333
7.1使用简单图片 334
7.1.1使用Drawable对象 334
7.1.2Bitmap和BitmapFactory 334
7.2绘图 337
7.2.1Android绘图基础:Canvas、Paint等 337
7.2.2Path类 341
7.2.3绘制游戏动画 344
实例:采用双缓冲实现画图板 344
实例:弹球游戏 348
7.3图形特效处理 351
7.3.1使用Matrix控制变换 351
实例:移动游戏背景 353
7.3.2使用drawBitmapMesh扭曲图像 355
实例:可揉动的图片 356
7.3.3使用Shader填充图形 358
7.4逐帧(Frame)动画 360
7.4.1AnimationDrawable与逐帧动画 360
实例:在指定点爆炸 362
7.5补间(Tween)动画 364
7.5.1Tween动画与Interpolator 364
7.5.2位置、大小、旋转度、透明度改变的补间动画 366
实例:蝴蝶飞舞 368
7.5.3自定义补间动画 369
7.6属性动画 373
7.6.1属性动画的API 373
7.6.2使用属性动画 375
实例:大珠小珠落玉盘 379
7.7使用SurfaceView实现动画 383
7.7.1SurfaceView的绘图机制 383
实例:基于SurfaceView开发示波器 386
7.8本章小结 388
第8章Android数据存储与IO 389
8.1使用SharedPreferences 390
8.1.1SharedPreferences与Editor简介 390
8.1.2SharedPreferences的存储位置和格式 391
实例:记录应用程序的使用次数 393
8.2File存储 393
8.2.1openFileOutput和openFileInput 393
8.2.2读写SD卡上的文件 396
实例:SD卡文件浏览器 399
8.3SQLite数据库 402
8.3.1SQLiteDatabase简介 402
8.3.2创建数据库和表 404
8.3.3使用SQL语句操作SQLite数据库 404
8.3.4使用sqlite3工具 406
8.3.5使用特定方法操作SQLite数据库 408
8.3.6事务 410
8.3.7SQLiteOpenHelper类 411
实例:英文生词本 412
8.4手势(Gesture) 415
8.4.1手势检测 415
实例:通过手势缩放图片 417
实例:通过手势实现翻页效果 419
8.4.2增加手势 422
8.4.3识别用户手势 425
8.5自动朗读(TTS) 427
8.6本章小结 429
第9章使用ContentProvider实现数据共享 431
9.1数据共享标准:ContentProvider 432
9.1.1ContentProvider简介 432
9.1.2Uri简介 433
9.1.3使用ContentResolver操作数据 434
9.2开发ContentProvider 435
9.2.1ContentProvider与ContentResolver的关系 435
9.2.2开发ContentProvider子类 436
9.2.3配置ContentProvider 437
9.2.4使用ContentResolver调用方法 438
9.2.5创建ContentProvider的说明 440
实例:使用ContentProvider共享生词本数据 441
9.3操作系统的ContentProvider 446
9.3.1使用ContentProvider管理联系人 446
9.3.2使用ContentProvider管理多媒体内容 452
9.4监听ContentProvider的数据改变 455
9.4.1ContentObserver简介 455
实例:监听用户发出的短信 456
9.5本章小结 457
第10章Service与BroadcastReceiver 458
10.1Service简介 459
10.1.1创建、配置Service 459
10.1.2启动和停止Service 461
10.1.3绑定本地Service并与之通信 462
10.1.4Service的生命周期 466
10.1.5使用IntentService 467
10.2电话管理器(TelephonyManager) 470
实例:获取网络和SIM卡信息 470
实例:监听手机来电 472
10.3短信管理器(SmsManager) 473
实例:发送短信 473
实例:短信群发 474
10.4音频管理器(AudioManager) 477
10.4.1AudioManager简介 477
实例:使用AudioManager控制手机音频 477
10.5振动器(Vibrator) 479
10.5.1Vibrator简介 479
10.5.2使用Vibrator控制手机振动 479
10.6手机闹钟服务(AlarmManager) 480
10.6.1AlarmManager简介 480
10.6.2设置闹钟 481
实例:定时更换壁纸 483
10.7接收广播消息 485
10.7.1BroadcastReceiver简介 485
10.7.2发送广播 486
10.7.3有序广播 488
实例:基于Service的音乐播放器 490
10.8接收系统广播消息 495
实例:开机自动运行的Service 495
实例:短信提醒 496
实例:手机电量提示 497
10.9本章小结 498
第11章多媒体应用开发 499
11.1音频和视频的播放 500
11.1.1使用MediaPlayer播放音频 500
11.1.2音乐特效控制 503
实例:音乐的示波器、均衡、重低音和音场 505
11.1.3使用SoundPool播放音效 511
11.1.4使用VideoView播放视频 513
11.1.5使用MediaPlayer和SurfaceView播放视频 515
11.2使用MediaRecorder录制音频 518
实例:录制音乐 519
11.3控制摄像头拍照 521
11.3.1使用Android 5.0的Camera v2拍照 521
实例:拍照时自动对焦 522
11.3.2录制视频短片 530
实例:录制生活短片 530
11.4Android 5.0新增的屏幕捕捉 533
11.5本章小结 536
第12章OpenGL与3D开发 537
12.13D图形与3D开发的基本知识 538
12.2OpenGL和OpenGL ES简介 539
12.3绘制2D图形 540
12.3.1在Android应用中使用OpenGL ES 540
12.3.2绘制平面上的多边形 542
12.3.3旋转 548
12.4绘制3D图形 550
12.4.1构建3D图形 550
12.4.2应用纹理贴图 554
12.5本章小结 559
第13章Android网络应用 560
13.1基于TCP协议的网络通信 561
13.1.1TCP协议基础 561
13.1.2使用ServerSocket创建TCP服务器端 562
13.1.3使用Socket进行通信 563
13.1.4加入多线程 567
13.2使用URL访问网络资源 573
13.2.1使用URL读取网络资源 573
13.2.2使用URLConnection提交请求 575
13.3使用HTTP访问网络 580
13.3.1使用HttpURLConnection 580
实例:多线程下载 580
13.3.2使用Apache HttpClient 585
实例:访问被保护资源 586
13.4Android 5.0增强的WebView 590
13.4.1使用WebView浏览网页 590
实例:迷你浏览器 590
13.4.2使用WebView加载HTML代码 591
13.4.3使用WebView中的JavaScript调用Android方法 592
13.5使用Web Service进行网络编程 595
13.5.1Web Service平台概述 595
13.5.2使用Android应用调用Web Service 597
实例:调用基于CXF的Web Service 598
13.6本章小结 601
第14章管理Android手机桌面 602
14.1管理手机桌面 603
14.1.1删除桌面组件 603
14.1.2添加桌面组件 603
14.2改变手机壁纸 604
14.2.1开发动态壁纸(Live Wallpapers) 605
实例:蜿蜒壁纸 605
14.3通过程序添加快捷方式 609
实例:让程序占领桌面 609
14.4管理桌面控件 611
14.4.1开发桌面控件 611
实例:液晶时钟 614
14.4.2显示带数据集的桌面控件 616
14.5本章小结 620
第15章传感器应用开发 621
15.1利用Android的传感器 622
15.2Android的常用传感器 624
15.2.1方向传感器 624
15.2.2陀螺仪传感器 625
15.2.3磁场传感器 625
15.2.4重力传感器 625
15.2.5线性加速度传感器 626
15.2.6温度传感器 626
15.2.7光传感器 626
15.2.8压力传感器 626
15.2.9Android 5.0新增的心率传感器 629
15.3传感器应用案例 630
实例:指南针 630
实例:水平仪 631
15.4本章小结 636
第16章GPS应用开发 637
16.1支持GPS的核心API 638
16.2获取LocationProvider 640
16.2.1获取所有可用的LocationProvider 640
16.2.2通过名称获得指定LocationProvider 641
16.2.3根据Criteria获得LocationProvider 641
16.3获取定位信息 642
16.3.1通过模拟器发送GPS信息 642
16.3.2获取定位数据 642
16.4临近警告 644
16.5本章小结 646
第17章整合高德Map服务 647
17.1调用高德Map服务 648
17.1.1获取Map API Key 648
17.1.2高德地图入门 650
17.2根据GPS信息在地图上定位 654
17.3执行定位 660
17.3.1地址解析与反向地址解析 660
17.3.2执行定位 662
17.4GPS导航 665
17.5本章小结 669
第18章合金弹头 670
18.1合金弹头游戏简介 671
18.2开发游戏界面组件 671
18.2.1游戏界面分析 671
18.2.2实现“怪物”类 672
18.2.3实现怪物管理类 679
18.2.4实现“子弹”类 683
18.2.5实现“角色”类 686
18.3实现绘图工具类 691
18.4加载、管理游戏图片 696
18.5实现游戏界面 699
18.5.1实现游戏Activity 699
18.5.2实现主视图 700
18.6本章小结 710
第19章电子拍卖系统 711
19.1系统功能简介和架构设计 712
19.1.1系统功能简介 712
19.1.2系统架构设计 713
19.2JSON简介 714
19.2.1使用JSON语法创建对象 715
19.2.2使用JSON语法创建数组 716
19.2.3Java的JSON支持 717
19.3发送请求的工具类 717
19.4用户登录 719
19.4.1处理登录的Servlet 719
19.4.2用户登录客户端 720
19.5查看流拍物品 728
19.5.1查看流拍物品的Servlet 728
19.5.2查看流拍物品客户端 729
19.6管理物品种类 734
19.6.1浏览物品种类的Servlet 734
19.6.2查看物品种类 735
19.6.3添加种类的Servlet 740
19.6.4添加物品种类 740
19.7管理拍卖物品 742
19.7.1查看自己的拍卖物品的Servlet 743
19.7.2查看自己的拍卖物品 743
19.7.3添加拍卖物品的Servlet 747
19.7.4添加拍卖物品 748
19.8参与竞拍 753
19.8.1选择物品种类 754
19.8.2根据种类浏览物品的Servlet 755
19.8.3根据种类浏览物品 756
19.8.4参与竞价的Servlet 758
19.8.5参与竞价 758
19.9权限控制 763
19.10本章小结 765

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