我尝试在 ICS 上以编程方式激活或停用 Android Beam 功能,但我找不到任何 api。是否可以 ?
而且我会知道在启动推送操作之前是否启用了 Android Beam 功能。是否可以 ?
我尝试在 ICS 上以编程方式激活或停用 Android Beam 功能,但我找不到任何 api。是否可以 ?
而且我会知道在启动推送操作之前是否启用了 Android Beam 功能。是否可以 ?
在手机的设置中,您可以启用和禁用 Android Beam 功能(无线网络 -> 更多... -> Android Beam)。普通应用没有打开或关闭此功能的必要权限(并且没有 API)。但是,您可以使用new Intent(Settings.ACTION_WIRELESS_SETTINGS)
.
在 Android 4.1 JB 上,添加了一个新的 API 调用NfcAdapter.isNdefPushEnabled()来检查 Android Beam 是打开还是关闭。
顺便说一句:即使 Android Beam 被禁用,只要 NFC 开启,您的设备仍然能够接收 Beam 消息。
您可以根据 Android 版本和当前状态具体选择要调出的设置屏幕。我是这样做的:
import android.annotation.TargetApi;
import android.app.Activity;
import android.content.Intent;
import android.nfc.NfcAdapter;
import android.os.Build;
import android.os.Bundle;
import android.provider.Settings;
@TargetApi(14)
// aka Android 4.0 aka Ice Cream Sandwich
public class NfcNotEnabledActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final Intent intent = new Intent();
if (Build.VERSION.SDK_INT >= 16) {
/*
* ACTION_NFC_SETTINGS was added in 4.1 aka Jelly Bean MR1 as a
* separate thing from ACTION_NFCSHARING_SETTINGS. It is now
* possible to have NFC enabled, but not "Android Beam", which is
* needed for NDEF. Therefore, we detect the current state of NFC,
* and steer the user accordingly.
*/
if (NfcAdapter.getDefaultAdapter(this).isEnabled())
intent.setAction(Settings.ACTION_NFCSHARING_SETTINGS);
else
intent.setAction(Settings.ACTION_NFC_SETTINGS);
} else if (Build.VERSION.SDK_INT >= 14) {
// this API was added in 4.0 aka Ice Cream Sandwich
intent.setAction(Settings.ACTION_NFCSHARING_SETTINGS);
} else {
// no NFC support, so nothing to do here
finish();
return;
}
startActivity(intent);
finish();
}
}
(我特此将此代码放入公共领域,无需许可条款或归属)