毕业论文外文翻译安卓应用基础.doc
《毕业论文外文翻译安卓应用基础.doc》由会员分享,可在线阅读,更多相关《毕业论文外文翻译安卓应用基础.doc(22页珍藏版)》请在沃文网上搜索。
1、毕业论文外文及翻译原 文 题 目 Android Application Fundamentals 学院专业班级 信息与控制工程学院 计算机08-1 学 生 姓 名 XXX 性别 X 指 导 教 师 XXX 职称 XXX 年 月 日外文及翻译英语原文Android Application FundamentalsAndroid applications are written in the Java programming language. The Android SDK tools compile the codealong with any data and resource files
2、into anAndroid package, an archive file with an.apksuffix. All the code in a single.apkfile is considered to be one application and is the file that Android-powered devices use to install the application.Once installed on a device, each Android application lives in its own security sandbox:l The And
3、roid operating system is a multi-user Linux system in which each application is a different user.l By default, the system assigns each application a unique Linux user ID (the ID is used only by the system and is unknown to the application). The system sets permissions for all the files in an applica
4、tion so that only the user ID assigned to that application can access them.l Each process has its own virtual machine (VM), so an applications code runs in isolation from other applications.l By default, every application runs in its own Linux process. Android starts the process when any of the appl
5、ications components need to be executed, then shuts down the process when its no longer needed or when the system must recover memory for other applications.In this way, the Android system implements theprinciple of least privilege. That is, each application, by default, has access only to the compo
6、nents that it requires to do its work and no more. This creates a very secure environment in which an application cannot access parts of the system for which it is not given permission.However, there are ways for an application to share data with other applications and for an application to access s
7、ystem services:l Its possible to arrange for two applications to share the same Linux user ID, in which case they are able to access each others files. To conserve system resources, applications with the same user ID can also arrange to run in the same Linux process and share the same VM (the applic
8、ations must also be signed with the same certificate).l An application can request permission to access device data such as the users contacts, SMS messages, the mountable storage (SD card), camera, Bluetooth, and more. All application permissions must be granted by the user at install time.That cov
9、ers the basics regarding how an Android application exists within the system. The rest of this document introduces you to:l The core framework components that define your application.l The manifest file in which you declare components and required device features for your application.l Resources tha
10、t are separate from the application code and allow your application to gracefully optimize its behavior for a variety of device configurations. Application ComponentsApplication components are the essential building blocks of an Android application. Each component is a different point through which
11、the system can enter your application. Not all components are actual entry points for the user and some depend on each other, but each one exists as its own entity and plays a specific roleeach one is a unique building block that helps define your applications overall behavior.There are four differe
12、nt types of application components. Each type serves a distinct purpose and has a distinct lifecycle that defines how the component is created and destroyed.Here are the four types of application components:ActivitiesAnactivityrepresents a single screen with a user interface. For example, an email a
13、pplication might have one activity that shows a list of new emails, another activity to compose an email, and another activity for reading emails. Although the activities work together to form a cohesive user experience in the email application, each one is independent of the others. As such, a diff
14、erent application can start any one of these activities (if the email application allows it). For example, a camera application can start the activity in the email application that composes new mail, in order for the user to share a picture.An activity is implemented as a subclass ofActivityand you
15、can learn more about it in theActivitiesdeveloper guide.ServicesAserviceis a component that runs in the background to perform long-running operations or to perform work for remote processes. A service does not provide a user interface. For example, a service might play music in the background while
16、the user is in a different application, or it might fetch data over the network without blocking user interaction with an activity. Another component, such as an activity, can start the service and let it run or bind to it in order to interact with it.A service is implemented as a subclass ofService
17、and you can learn more about it in theServicesdeveloper guide.Content providersAcontent providermanages a shared set of application data. You can store the data in the file system, an SQLite database, on the web, or any other persistent storage location your application can access. Through the conte
18、nt provider, other applications can query or even modify the data (if the content provider allows it). For example, the Android system provides a content provider that manages the users contact information. As such, any application with the proper permissions can query part of the content provider (
19、such asContactsContract.Data) to read and write information about a particular person.Content providers are also useful for reading and writing data that is private to your application and not shared. For example, theNote Padsample application uses a content provider to save notes.A content provider
20、 is implemented as a subclass ofContentProviderand must implement a standard set of APIs that enable other applications to perform transactions. For more information, see theContent Providersdeveloper guide.Broadcast receiversAbroadcast receiveris a component that responds to system-wide broadcast a
21、nnouncements. Many broadcasts originate from the systemfor example, a broadcast announcing that the screen has turned off, the battery is low, or a picture was captured. Applications can also initiate broadcastsfor example, to let other applications know that some data has been downloaded to the dev
22、ice and is available for them to use. Although broadcast receivers dont display a user interface, they maycreate a status bar notificationto alert the user when a broadcast event occurs. More commonly, though, a broadcast receiver is just a gateway to other components and is intended to do a very mi
23、nimal amount of work. For instance, it might initiate a service to perform some work based on the event.A broadcast receiver is implemented as a subclass ofBroadcastReceiverand each broadcast is delivered as anIntentobject. For more information, see theBroadcastReceiverclass.A unique aspect of the A
- 1.请仔细阅读文档,确保文档完整性,对于不预览、不比对内容而直接下载带来的问题本站不予受理。
- 2.下载的文档,不会出现我们的网址水印。
- 3、该文档所得收入(下载+内容+预览)归上传者、原创作者;如果您是本文档原作者,请点此认领!既往收益都归您。
下载文档到电脑,查找使用更方便
10 积分
下载 | 加入VIP,下载更划算! |
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 毕业论文 外文 翻译 应用 基础