我正在开发一个
Android应用程序,我需要Android设备功能.我知道,通过使用包管理器,getSystemAvailableFeatures方法应该可用.仍然没有这个方法任何人都可以通过发布一些与之相关的示例或源代码来帮助我.
解决方法
我使用以下函数来确定某个功能是否可用:
public final static boolean isFeatureAvailable(Context context,String feature) { final PackageManager packageManager = context.getPackageManager(); final FeatureInfo[] featuresList = packageManager.getSystemAvailableFeatures(); for (FeatureInfo f : featuresList) { if (f.name != null && f.name.equals(feature)) { return true; } } return false; }
用法(即来自Activity类):
if (isFeatureAvailable(this,PackageManager.FEATURE_CAMERA)) { ... }