
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 · 625 阅读 · 0 评论 -
Message
Class OverviewDefines 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 · 627 阅读 · 0 评论 -
MessageQueue
Class OverviewLow-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 · 558 阅读 · 0 评论 -
Handler
Class OverviewA 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 · 574 阅读 · 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 · 941 阅读 · 0 评论 -
Android Asynchronous Http Client
OverviewAn 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 · 1212 阅读 · 0 评论 -
Looper
Class OverviewClass 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 · 811 阅读 · 0 评论 -
Get the Android SDK
Get the Android SDKThe 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 · 1397 阅读 · 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 · 741 阅读 · 0 评论