Android GUI Building Blocks

说明:此笔记为“Android开发”学习视频的笔记,链接如下:http://open.163.com/movie/2010/1/8/D/M79HE97C3_M79HEQJ8D.html

一, Activity: A represnetation of a user doing something,

例子:显示联系人列表并且选中一个联系人

Activity的三种状态:Stopped, Paused,Active

二, Service: an application or an applicaton component that doesn‘t have a user interface

例子:媒体播放器

三, Broadcast Receiver:

1,Receive and react to "broadcasts"

2,Don‘t have a user interface, but can invoke Activities that do

3,Create by extending the Android BroadcastReceiver class

4,Example: An application wants to be notified when a photo is taken on the device

四,Content Provider

1,Make‘s an application‘s data avaliable to other apps, and can also be used by the defining app itself

2, Example: Make contacts avaliable to other apps

五,Intents: An “intent” is an asynchrounous message sent from one Activity to another

时间: 2024-08-29 16:30:25

Android GUI Building Blocks的相关文章

bc.34.B.Building Blocks(贪心)

Building Blocks Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 751    Accepted Submission(s): 164 Problem Description After enjoying the movie,LeLe went home alone. LeLe decided to build block

图解Android - Android GUI 系统

图解Android - Android GUI 系统 (1) - 概论 图解Android - Android GUI 系统 (2) - 窗口管理系统 图解Android - Android GUI 系统 (3) - Surface Flinger (TBD) 图解Android - Android GUI 系统 (4) - Activity的生命周期 图解Android - Android GUI 系统 (5) - Android的用户输入处理

BC#34 1002 hdu 5192 Building Blocks

Building Blocks Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 60    Accepted Submission(s): 6 Problem Description After enjoying the movie,LeLe went home alone. LeLe decided to build blocks.

Building Blocks (hdu 5191)

Building Blocks Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 281    Accepted Submission(s): 59 Problem Description After enjoying the movie,LeLe went home alone. LeLe decided to build blocks

HDU - 5190 - Go to movies && 5191 - Building Blocks (BC#34 A,B)

Go to movies Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 99    Accepted Submission(s): 67 Problem Description Winter holiday is coming!As the monitor, LeLe plans to go to the movies. Becaus

DTD - XML Building Blocks

The main building blocks of both XML and HTML documents are elements. The Building Blocks of XML Documents Seen from a DTD point of view(从dtd的角度来看), all XML documents (and HTML documents) are made up by the following building blocks: Elements Attribu

2014年最全的ANDROID GUI模板和线框图免费下载

距离上次分享GUI模板有很长时间了,这段时间里设计趋势不断变化,谷歌推出了最新的Android L以及全新的界面设计,UI设计师又有得忙了,今天收集了一组实用的GUI模板和线框图,包含最新的Android4.4,Material Design,Android 可穿戴设备等等,控件全面,拿来即用,建议收藏待用呦. Android UI XHDPI Template(Sketch) Android UI Design Kit 4.4 (PSD) Android GUI Template (Sketc

Intel® Threading Building Blocks (Intel® TBB) Developer Guide 中文 Parallelizing Data Flow and Dependence Graphs并行化data flow和依赖图

https://www.threadingbuildingblocks.org/docs/help/index.htm Parallelizing Data Flow and Dependency Graphs In addition to loop parallelism, the Intel® Threading Building Blocks (Intel® TBB) library also supports graph parallelism. It's possible to cre

android Gui系统之SurfaceFlinger(1)

GUI 是任何系统都很重要的一块. android GUI大体分为4大块. 1)SurfaceFlinger 2)WMS 3)View机制 4)InputMethod 这块内容非常之多,但是理解后,可以触类旁通,其实现在主流的系统,包括andorid,ios在构架上,都是有很多相识之处. 我们先来讲SurfaceFlinger 1.OpenGL & OpenGL ES OPenGL ES 是android系统绘画的基础.关于OpenGL部分,可以百度了解下. 先来看一个OpenGL & S