1, 如何指定應用程式所需要的api級別?
在manifest中指定
android:minsdkversion
="5"
/>
android:maxsdkversion
="11"
/>
...android:targetsdkversion
="7"
/>
2, 在**會用到這個指定的級別?
android在安裝應用程式的時候,會審查應用程式的指定的級別屬性。如果當前平台的版本不能滿足應用程式所需要的最低級別要求,則應用程式會安裝失敗。
例如,在第1條的例子中,api最低級別是5,對應的android版本是android2.0。如果你的手機android版本是1.6,就無法安裝這個應用程式。
3, 級別和android版本的對應關係
platform version
api level
version_code
notes
android 4.4
19kitkat
platformhighlights
android 4.3
18jelly_bean_mr2
platformhighlights
android 4.2, 4.2.2
17jelly_bean_mr1
platformhighlights
android 4.1, 4.1.1
16jelly_bean
platformhighlights
android 4.0.3, 4.0.4
15ice_cream_sandwich_mr1
platformhighlights
android 4.0, 4.0.1, 4.0.2
14ice_cream_sandwich
android 3.2
13honeycomb_mr2
android 3.1.x
12honeycomb_mr1
platform highlights
android 3.0.x
11honeycomb
platform highlights
android 2.3.4
android 2.3.3
10gingerbread_mr1
platformhighlights
android 2.3.2
android 2.3.1
android 2.3
9gingerbread
android 2.2.x
8froyo
platform highlights
android 2.1.x
7eclair_mr1
platformhighlights
android 2.0.1
6eclair_0_1
android 2.0
5eclair
android 1.6
4donut
platform highlights
android 1.5
3cupcake
platform highlights
android 1.1
2base_1_1
android 1.0
1base
android api包簡要介紹
包含一些android應用程式的 resource classes.類 manifest 清單,定義了一些與許可權相關的靜態常量.publicfinalclassmanifestextendsobject r 資源對映類,定義了一些資源型別.包括xml,sytle,color,raw,drawabl...
android api 學習筆記 內容
1.query 與 sql 查詢對比。query 引數 select 關鍵字 引數 說明urifrom table name uri對映至提供程式中名為 table name的表。projectioncol,col,col,projection是應該為檢索到的每個行包含的列的陣列。selection...
MSSQL隔離級別理解
資料庫的六種隔離級別的自我理解 隔離級別 isolation level 分類 未提交事務 read uncommitted 已提交事務 read committed 可重複度 repeatableread 可序列化 serializable 最高端別 其實這幾種隔離級別最終是對資料庫增刪改查進行的...