可以使用 public abstract boolean hasSystemFeature (String name)
判断是否支持下列某个属性:
FEATURE_AUDIO_LOW_LATENCY
FEATURE_BLUETOOTHFEATURE_WIFI_DIRECT
在应用程序中使用方法
if(!context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_LOCATION_GPS)){ /**/ }
-------------------------------------------------------------------------------------------------
对于设备端来说,是否支持这些feature,就要放各种.xml文件到 /system/etc/permissions下面
诸如:
android.hardware.camera.front.xml
android.hardware.location.gps.xml
android.hardware.sensor.accelerometer.xml
android.hardware.telephony.gsm.xml
android.hardware.touchscreen.multitouch.jazzhand.xml
android.hardware.usb.accessory.xml
android.hardware.wifi.xml
等等
这些文件存在于frameworks/base/data/etc
修改Android.mk就可把他们放到/system/etc/permissions里面去了。
这可以解决Google market(现在叫做play)里面显示应用较少的问题。