书籍详情
《Android编程》[25M]百度网盘|亲测有效|pdf下载
  • Android编程

  • 出版社:南京东南大学出版社
  • 出版时间:2013-05
  • 热度:10750
  • 上架时间:2024-06-30 09:08:33
  • 价格:0.0
书籍下载
书籍预览
免责声明

本站支持尊重有效期内的版权/著作权,所有的资源均来自于互联网网友分享或网盘资源,一旦发现资源涉及侵权,将立即删除。希望所有用户一同监督并反馈问题,如有侵权请联系站长或发送邮件到ebook666@outlook.com,本站将立马改正

内容介绍

内容简介

  快速上手Android编程,学习如何创建适合于手持设备和平板电脑的新用户体验。《Android编程(第2版)(影印版)》中你可以了解到Android工具和编程要点,包括使用Android 4 API的佳实践。只要你熟悉Java或者Objective-C,你就能够搭建精心设计的应用。

内页插图

精彩书评

  “我将把这本书推荐给所有不仅想要了解如何为Android编程,而且想要更好地理解它的体系的人。”
  ——Etienne Savard
  
  第一版的评论
  “这本书没有停留在基本知识上,它对所有涉及的话题都提供了深入的见解。它还特别着重介绍了Android的数据架构如何为使用web服务的应用提供模型,这个模型改善了界面性能和数据呈现。”
  ——Ajit Jaokar

目录

Preface

Part Ⅰ. Tools and Basics
1. Installing the Android SDK and Prerequisites
Installing the Android SDK and Prerequisites
The Java Development Kit (JDK)
The Eclipse Integrated Development Environment (IDE)
The Android SDK
Adding Build Targets to the SDK
The Android Developer Tools (ADT) Plug-in for Eclipse
Test Drive: Confirm That Your Installation Works
Making an Android Project
Making an Android Virtual Device (AVD)
Running a Program on an AVD
Running a Program on an Android Device
Troubleshooting SDK Problems: No Build Targets
Components of the SDK
The Android Debug Bridge (adb)
The Dalvik Debug Monitor Server (DDMS)
Components of the ADT Eclipse Plug-in
Android Virtual Devices
Other SDK Tools
Keeping Up-to-Date
Keeping the Android SDK Up-to-Date
Keeping Eclipse and the ADT Plug-in Up-to-Date
Keeping the JDK Up-to-Date
Example Code
SDK Example Code
Example Code from This Book
On Reading Code
2. Java for Android
Android Is Reshaping Client-Side Java
The Java Type System
Primitive Types
Objects and Classes
Object Creation
The Object Class and Its Methods
Objects, Inheritance, and Polymorphism
Final and Static Declarations
Abstract Classes
Interfaces
Exceptions
The Java Collections Framework
Garbage Collection
Scope
Java Packages
Access Modifiers and Encapsulation
Idioms of Java Programming
Type Safety in Java
Using Anonymous Classes
Modular Programming in Java
Basic Multithreaded Concurrent Programming in Java
Synchronization and Thread Safety
Thread Control with wait0 and notify0 Methods
Synchronization and Data Structures
3.The Ingredients of an Android Application
Traditional Programming Models Compared to Android
Activities, Intents, and Tasks
Other Android Components
Service
Content Providers
Broadcast Receiver
Component Life Cycles
The Activity Life Cycle
On Porting Software to Android
Static Application Resources and Context
Organizing Java Source
Resources
Application Manifests
Initialization Parameters in AndroidManifest.xml
Packaging an Android Application: The .apk File
The Android Application Runtime Environment
……

Part Ⅱ. About the Android Framework
Part Ⅲ. A Skeleton Application for Android
Part Ⅳ. Advanced Topics