1 安卓核心组件有哪些? What are the Android core components?
提供界面显示的Activtiy,
提供后台计算的Service,
提供进程间通信的Intent
提供广播接收的BroadcastRsceiver.
2 安卓 key features 有哪些?
Intergrated browser
SQLite
Media support
Wireless services
DVM
Application framework
Rich development environment
3安卓用什么数据库?Android with what database?
SQLite
4几个流行的移动平台各自的 IDE 是什么?
IOS Xcode
Android Eclipse
Windows phone Visual Studio
黑莓 Native平台
5 R.java 是什么文件?干什么用的?在什么地方?What is R.java file? What for? In what place?
R.java文件是Android项目自动生成的终态类
R.java文件除了有自动标识资源的"索引"功能之外,还有另一个主要的功能,当"res"目录中的某个资源在应用中没有被使用到,在该应用被编译的时候系统就不会把对应的资源编译到该应用的APK包中,这样可以节省Android手机的资源。
"gen/"目录下
6安卓平台架构分为几层?各是什么?The Android platform structure is divided into several layers? Each is what?
Android 系统分为四层,从下往上分别是
Linux Kernel,
Libraries 和Android Runtime,
Application Framework,
Applications.
7创建一个 UI 并运行之,有哪几个步骤?
创建一个Activity
把UI和Activity关联起来
注册这个Activity
8 Intent 有几个组件?各是干什么用的?哪些组件是必须存在的,哪些是可选的,在Manifest中 intent filter 是如何声明的?
Componment name(接收者名字)
Action(指定需要被执行的动作)
Data(指定用于操作的数据)
Category(指定目标应用程序组件的行为)
Extras
Flags
定义在<activity>
<intent-filter>
</intent-filter>
</activity>
9 Activity的生命周期有哪些状态?状态转换时调用的方法各是什么?
What is the state of the Activity life cycle? State transitionmethod called when all is what?
一个Activity有三种状态:
Running,运行在前台(在当前Activity栈的栈顶)。
Paused,失去了焦点但是仍然对用户可见,比如有其他的Activity在它之上,或者透明或者
没有遮住整个屏幕。
安卓课程设计题目Stopped,被其他Activity完全覆盖,需要注意的是包括暂停状态在内,这两种状态都仍然保存了所有状态信息,直到被系统终止。
1 2 3 4 5 6 7 | void onCreate() void onStart() void onRestart() void onResume() void onPause() void onStop() void onDestroy() |
10同一个应用之间Activity互相调用要用什么Intent(隐式、显式?还是什么?)?
With an application of the Activity call each other to usewhat Intent (implicit, explicit? Or what?)?
显式Intent直接用组件的名称定义目标组件,这种方式很直接。但是由于开发人员往往并不清楚别的应用程序的组件名称,因此,显式Intent更多用于在应用程序内部传递消息。比如在某应用程序内,一个Activity启动一个Service。
11什么是Dalvik Virtual Machine?
(Dalvik虚拟机器)是一种暂存器型态的虚拟机器。简称DVM,DVM在撰写开发时就已经设想用最少的记忆体资源来执行,以及同时可执行多个VM为前提来开发的。
大部分安卓应用程序都是用Java编写的,然后被编译成字节码,字节码通过dilvik虚拟机在运行环境中被解释执行
12安卓日志类 Log 有几种常用方法?各用于什么输出什么信息?哪些信息只应该在开发的时候才允许输出?
Errors 应用程序抛出的异常
Warnings
Informational messages
Debug messages
Verbose messages
在开发人员调试应用程序是输出
13什么是Content Provider?
内容提供器是应用程序之间共享数据的接口,
A content provider can store and retrive data making it accessible to all application
比如:联系人提供器专为不同应用程序提供联系人数据;设置提供器专为不同应用程序提供系统配置信息,包括内置的设置应用程序等。
14什么是Broadcast Receiver?
①广播接收器是一个专注于接收广播通知信息,并做出对应处理的组件。
②应用程序可以拥有任意数量的广播接收器以对所有它感兴趣的通知信息予以响应。所有的接收器均继承自BroadcastReceiver基类。
③广播接收器没有用户界面。然而,它们可以启动一个activity来响应它们收到的信息,或者用NotificationManager来通知用户。通知可以用很多种方式来吸引用户的注意力──闪动背灯、震动、播放声音等等。一般来说是在状态栏上放一个持久的图标,用户可以打开它并获取消息。
15什么是Intent?
Intent(意图)主要是解决Android应用的各项组件之间的通讯。
Intent负责对应用中一次操作的动作、动作涉及数据、附加数据进行描述,Android则根据此Intent的描述,负责到对应的组件,将 Intent传递给调用的组件,并完成组件的调用。
16什么是Service,Service有哪些状态?
Services是一个没有任何UI能够在后台长时间运行的应用程序组件
Service是android 系统中的四大组件之一(Activity、Service、BroadcastReceiver、ContentProvider),它跟Activity的级别差不多,但不能自己运行只能后台运行,并且可以和其他组件进行交互。
Started 一个activity调用startService()来启动它
Bound 一个activity调用bindService()来绑定它
17安卓的资源有哪些类型?各放在什么位置?
Bool 用XML格式定义的布尔值 文件位置:res/l
Color 用XML格式定义的颜值 文件位置:res/l
Dimens 用XML格式定义的数量值 文件位置:res/l
ID 用XML格式定义的紫苑唯一ID 文件位置:res/l
Integer 用XML格式定义的整数资源 文件位置:res/l
Integer Array 用XML格式定义的整数数组 文件位置:res/l
Typed Array 用XML格式定义的TypedArray 文件位置:res/l
18 IPC是什么意思?和Intent有什么关系?
Inter-Process Communication
IPC是内部进程通信的简称, 是共享"命名管道"的资源。Android中的IPC机制是为了让Activity和Service之间可以随时的进行交互,故在Android中该机制,只适用于Activity和Service之间的通信,类似于远程方法调用,类似于C/S模式的访问。通过定义AIDL接口文件来定义IPC接口。Servier端实现IPC接口,Client端调用IPC接口本地代理
19 Broadcast有哪几种?区别?(8.14)
Normal broadcasts
Broadcasts sent to all interested receivers at the same time and the receivers run in an udefined order often at the same time
Ordered broadcasts
Broadcasts are sent ti all the interested receivers in a peoper order,which means that a broadcasts is delivered to one receivers at a time
20 Ordered broadcast如何决定接收者的顺序?Ordered broadcast how to decide the order?
To control the order in which all the interested receivers run ,you can use the android:priority attribute of the receiver’s intent-filter element. However ,receivers with the same priority will be run in an arbitrary order(无序)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论