android程序中的AndroidManifest.xml中的uses-feature詳解

AndroidManifest.xml中的uses-feature

在android的manifest文件:

AndroidManifest.xml

中,有個:uses-feature

這個xml節點。

用於指定android程序,是否需要某種硬件或軟件資源/功能。

uses-feature的語法

<uses-feature
  android:name="string"
  android:required=["true" | "false"]
  android:glEsVersion="integer" />

android:name

硬件或軟件資源的名字。

常見的有:

硬件方面的:

  • 攝像頭:android.hardware.camera
  • 各種傳感器:
    • 加速計:android.hardware.sensor.accelerometer
    • 氣壓計:android.hardware.sensor.barometer
    • 指南針android.hardware.sensor.compass
    • 陀螺儀android.hardware.sensor.gyroscope
    • 感光android.hardware.sensor.light
    • 近距離感測android.hardware.sensor.proximity
  • 麥克風:android.hardware.microphone
  • 定位:android.hardware.location
  • USB:
    • USB Host:android.hardware.usb.host
  • WIFI:android.hardware.wifi
  • 藍牙:android.hardware.bluetooth

軟件方面的:

  • Bluetooth Low Energy:android.software.bluetooth_le
  • VOIP:android.software.sip.voip

更多的,可見:

http://developer.android.com/guide/topics/manifest/uses-feature-element.html#features-reference

android:required

  • android:required="true":表示需要設備具有某個功能。
    • 如果設備沒有該功能,則程序不工作,就是可以理解的
  • android:required="false":表示希望設備,最好具有某個功能
    • 設備即使沒有該功能,程序也應該可以正常工作
    • 爲了程序工作的更好,最好具有該功能。

如果不指定,默認爲true:

?
1
android:required="true":

android:qlEsVersion

是和OpenGL ES,比如:

  • OpenGL ES 1.0
  • OpenGL ES 2.0
  • OpenGL ES 3.0

之類的有關。

我這裏不涉及到,不去深究。

uses-feature寫法舉例

舉例:

1.某程序需要藍牙和攝像頭,就可以這麼寫:

?
1
2
< uses-feature android:name = "android.hardware.bluetooth" />
< uses-feature android:name = "android.hardware.camera" />

2.如果,某個設備,是類似於照相機之類的程序,那麼沒有攝像頭,就沒法正常工作,則可以加上required參數爲true:

?
1
< uses-feature android:name = "android.hardware.camera" android:required = "true" />

3.如果某個文件共享的軟件,除了通過WIFI傳輸外,如果有藍牙,那最好,也支持通過藍牙傳輸,則可以加上required爲false,希望最好有藍牙:

?
1
< uses-feature android:name = "android.hardware.bluetooth" android:required = "false" />

4.比如,我的程序,是將android設備作爲USB的Host,外接USB的設備的,所以要求必須有USB的host,所以可以寫爲:

?
1
< uses-feature android:required = "true" android:name = "android.hardware.usb.host" />

uses-feature的注意事項和其他說明

 uses-feature,只是起到指示性的作用,不是強制的檢測

官網說了:

uses-feature,只是起到指示性的作用,不是強制的檢測

意味着:

如果像上面的,我寫了:

?
1
< uses-feature android:name = "android.hardware.usb.host" android:required = "true" />

(結果出錯了:

[2013-11-05 10:15:37 – com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Parser exception for D:\DevRoot\xxxxxxxxxxxxxx\AndroidManifest.xml: Element type "uses-feature" must be followed by either attribute specifications, ">" or "/>".

[2013-11-05 10:15:37 – yyyy] Error in an XML file: aborting build.

所以去改爲:

?
1
< uses-feature android:required = "true" android:name = "android.hardware.usb.host" />

貌似纔可以)

本意是:希望此android設備必須有usb的host,否則沒法工作。

但是實際上是:

即使沒有usb的host,該app,也是可以在該android設備上面跑的

只不過不能正常工作罷了。

而作爲Android系統,是不是強制去檢測:

當此android設備,沒有usb的host,就不讓該app運行。

是沒有這個強制檢測的。

 寫android的app時最好還是加上合適的uses-feature的說明比較好

不過呢:

對於其他一些程序,比如Google Play

會根據你的程序中的uses-feature的聲明,去過濾,分類android的app的。

 另外,你的程序中,也最好,根據實際需要,去加上合適的uses-feature的說明,比較好。

方便用戶和其他人明白,你的app對於資源的需求:

至少間接的相當於:給當前app,弄了個prerequisite前提條件了。

便於用戶清楚需要哪些軟硬件條件,才能運行你的當前的app。

 可以用aapt去檢測android的app(xxx.apk)中的uses-feature屬性

參考官網的:

Testing the features required by your application

找到對應

便於用戶清楚需要哪些軟硬件條件,才能運行你的當前的app。

 可以用aapt去檢測android的app(xxx.apk)中的uses-feature屬性

參考官網的:

Testing the features required by your application

找到對應

至少間接的相當於:給當前app,弄了個prerequisite前提條件了。
adt-bundle-windows/sdk/platform-tools/aapt.exe

去拷貝了某個apk,測試了一把,結果如下:

?
1
2
相關文章
相關標籤/搜索