在 Android API 级别 10 中,NfcAdapter 有一个方法 enableForegroundNdefPush(),
描述是
You must explicitly call this method every time the activity is resumed,
and you must call disableForegroundNdefPush(Activity) before your activity
completes onPause().
那么 enableForegroundNdefPush() 只能调用 onResume() 吗?
但是我想在按下按钮时发送 NdefMessage
我能怎么做 ?