Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 android 应用程序中添加 NFC 卡仿真。我需要针对手机的 NFC 支持自定义我的应用程序行为。即,如果 Android 设备不支持 NFC,则卡模拟无效,反之亦然。这样我就可以将单个应用程序上传到独立于 NFC 功能运行的 Android 市场。
让我知道如何实现上述功能(动态类加载)?请给我一些示例代码?
我想将我的应用程序定位到最低 API 级别 8 (OS 2.2)
问候
@nish
第 1 步:添加<uses-feature android:name="android.hardware.nfc" android:required="false" />到您的清单中。
<uses-feature android:name="android.hardware.nfc" android:required="false" />
步骤#2:在需要的地方,使用PackageManager并hasSystemFeature()确定设备是否具有该android.hardware.nfc功能。
PackageManager
hasSystemFeature()
android.hardware.nfc