API翻译
文章平均质量分 75
lyy1104
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Create a Project with Eclipse
Click New in the toolbar.In the window that appears, open the Android folder, select Android Application Project, and click Next. Figure 1. The New Android App Project wizard in Eclipse. Fi翻译 2014-05-19 21:23:08 · 661 阅读 · 0 评论 -
Message
Class Overview Defines a message containing a description and arbitrary data object that can be sent to a Handler. This object contains two extra int fields and an extra object field that allow翻译 2014-05-21 21:22:57 · 668 阅读 · 0 评论 -
MessageQueue
Class Overview Low-level class holding the list of messages to be dispatched by a Looper. Messages are not added directly to a MessageQueue, but rather throughMessageQueue.IdleHandler objects翻译 2014-05-21 21:26:47 · 579 阅读 · 0 评论 -
Handler
Class Overview A Handler allows you to send and process Message and Runnable objects associated with a thread's MessageQueue. Each Handler instance is associated with a single thread and that翻译 2014-05-21 21:11:43 · 603 阅读 · 0 评论 -
Saving Files
Android uses a file system that's similar to disk-based file systems on other platforms. This lesson describes how to work with the Android file system to read and write files with the FileAPIs. A翻译 2014-05-28 22:15:15 · 969 阅读 · 0 评论 -
Android Asynchronous Http Client
Overview An asynchronous callback-based Http client for Android built on top of Apache’s HttpClient libraries. All requests are made outside of your app’s main UI thread, but any callback logic w翻译 2014-05-22 21:53:13 · 1236 阅读 · 0 评论 -
Looper
Class Overview Class used to run a message loop for a thread. Threads by default do not have a message loop associated with them; to create one, call prepare() in the thread that is to run the翻译 2014-05-21 21:17:50 · 835 阅读 · 0 评论 -
Get the Android SDK
Get the Android SDK The Android SDK provides you the API libraries and developer tools necessary to build, test, and debug apps for Android. If you're a new Android developer, we recommend you downl翻译 2014-05-19 20:26:48 · 1425 阅读 · 0 评论 -
Managing the Activity Lifecycle
As a user navigates through, out of, and back to your app, theActivity instances in your app transition between different states in their lifecycle. For instance, when your activity starts for the f翻译 2014-05-28 21:04:37 · 761 阅读 · 0 评论
分享