自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 资源 (1)
  • 问答 (2)
  • 收藏
  • 关注

翻译 Application Fundamentals(6)

App ResourcesAn Android app is composed of more than just code—it requires resources that are separate from the source code, such as images, audio files, and anything relating to the visual presenta...

2018-04-18 13:11:29 218

翻译 Application Fundamentals(5)

Declaring component capabilitiesAs discussed above, in Activating Components, you can use an Intent to start activities, services, and broadcast receivers. 如上面讨论的,在激活组件方面,你可以使用一个Intent来启动activities...

2018-04-18 13:10:50 156

翻译 Application Fundamentals(4)

The Manifest FileBefore the Android system can start an app component, the system must know that the component exists by reading the app’s AndroidManifest.xml file (the “manifest” file). 在安卓系统能够启动一...

2018-04-18 13:09:35 167

翻译 Application Fundamentals(3)

Activating ComponentsThree of the four component types—activities, services, and broadcast receivers—are activated by an asynchronous message called an intent. 四种组件类型中的三种—activities, services, and ...

2018-04-18 13:06:23 196

翻译 Application Fundamentals(2)

App ComponentsApp components are the essential building blocks of an Android app. Each component is a different point through which the system can enter your app. Not all components are actual entry...

2018-04-18 13:05:24 177

翻译 Application Fundamentals(1)

Application FundamentalsAndroid apps are written in the Java programming language. 安卓应用是用Java语言写的。The Android SDK tools compile your code—along with any data and resource files—into an APK: an A...

2018-04-18 13:03:33 176

原创 AndroidManifest.xml 中的 targetSdkVersion 属性 和 project.properties 中的 target 属性的区别

在AndroidMenifest.xml中,常常会有下面的语句: <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="10" android:maxSdkVersion="15" />在project.properties中,会看到下面的语句: target=android-10 ...

2018-04-17 13:13:06 5046

原创 向前兼容和向后兼容

在理解向前兼容和向后兼容,先要知道这是用在什么架构中的。能用到向后兼容和向前兼容, 那么肯定是存在接口概念的。 也就是说存在一个系统提供接口供外部使用, 外部应用使用这个接口。 然后就存在系统迭代周期和应用迭代周期不一致的问题,这时候就出现了向前兼容和向后兼容的说法。向后兼容就是 , 使用旧接口的应用,能够运行在新的系统上。 就比如其他回答者说的: (1)“Windows 10要...

2018-04-17 13:01:39 7985

计算机二级考试试题及答案详解

计算机等级二级C语言考试试题和答案详解。

2014-01-03

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除