本文整理汇总了Java中android.nfc.NfcAdapter.disableForegroundDispatch方法的典型用法代码示例。如果您正苦于以下问题:Java NfcAdapter.disableForegroundDispatch方法的具体用法?Java NfcAdapter.disableForegroundDispatch怎么用?Java NfcAdapter.disableForegroundDispatch使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.nfc.NfcAdapter
的用法示例。
在下文中一共展示了NfcAdapter.disableForegroundDispatch方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: enableDisableForegroundDispatch
import android.nfc.NfcAdapter; //导入方法依赖的package包/类
private void enableDisableForegroundDispatch(boolean enable) {
Log.i(LOG_TAG, "enableForegroundDispatch, enable = " + enable);
NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(context);
Activity currentActivity = getCurrentActivity();
if (nfcAdapter != null && !currentActivity.isFinishing()) {
try {
if (enable) {
nfcAdapter.enableForegroundDispatch(currentActivity, getPendingIntent(), getIntentFilters(), getTechLists());
} else {
nfcAdapter.disableForegroundDispatch(currentActivity);
}
} catch (IllegalStateException e) {
Log.w(LOG_TAG, "Illegal State Exception starting NFC. Assuming application is terminating.");
}
}
}
示例2: stopForegroundDispatch
import android.nfc.NfcAdapter; //导入方法依赖的package包/类
public void stopForegroundDispatch() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD_MR1) {
NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(activity);
if (nfcAdapter != null) {
if (isForeground) {
nfcAdapter.disableForegroundDispatch(activity);
isForeground = false;
}
}
}
}
示例3: stopForegroundDispatch
import android.nfc.NfcAdapter; //导入方法依赖的package包/类
private static void stopForegroundDispatch(final Activity activity, NfcAdapter adapter)
{
adapter.disableForegroundDispatch(activity);
}
示例4: stopForegroundDispatch
import android.nfc.NfcAdapter; //导入方法依赖的package包/类
/**
* @param activity The corresponding {@link BaseActivity} requesting to stop the foreground dispatch.
* @param adapter The {@link NfcAdapter} used for the foreground dispatch.
*/
public static void stopForegroundDispatch(final Activity activity, NfcAdapter adapter) {
adapter.disableForegroundDispatch(activity);
}