在android的manifest文件:
AndroidManifest.xml
中,有個:uses-feature
這個xml節點。
用於指定android程序,是否需要某種硬件或軟件資源/功能。
<uses-feature android:name="string" android:required=["true" | "false"] android:glEsVersion="integer" /> |
硬件或軟件資源的名字。
常見的有:
硬件方面的:
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
android.hardware.usb.host
android.hardware.wifi
android.hardware.bluetooth
軟件方面的:
android.software.bluetooth_le
android.software.sip.voip
更多的,可見:
http://developer.android.com/guide/topics/manifest/uses-feature-element.html#features-reference
android:required="true"
:表示需要設備具有某個功能。
android:required="false"
:表示希望設備,最好具有某個功能
如果不指定,默認爲true:
1
|
android:required="true":
|
是和OpenGL ES,比如:
之類的有關。
我這裏不涉及到,不去深究。
舉例:
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,只是起到指示性的作用,不是強制的檢測
意味着:
如果像上面的,我寫了:
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 "/>". |
所以去改爲:
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
找到對應
adt-bundle-windows/sdk/platform-tools/aapt.exe |
去拷貝了某個apk,測試了一把,結果如下:
1
2
|