NfcAdapter.getDefaultAdapter(this)在模拟器中返回null

时间:2011-03-04 17:37:37

标签: android android-emulator nfc

我正在尝试在模拟器API 10(Android 2.3中)中测试ForegroundDispatch(http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/nfc/ForegroundDispatch.html)。 3)。

当我调用NfcAdapter.getDefaultAdapter(this)时,我得到null。为什么会这样?

代码:

public class ForegroundDispatch extends Activity {
private NfcAdapter mAdapter;
private PendingIntent mPendingIntent;
private IntentFilter[] mFilters;
private String[][] mTechLists;
private TextView mText;
private int mCount = 0;

@Override
public void onCreate(Bundle savedState) {
    super.onCreate(savedState);

    setContentView(R.layout.foreground_dispatch);
    mText = (TextView) findViewById(R.id.text);
    mText.setText("Scan a tag");

    mAdapter = NfcAdapter.getDefaultAdapter(this);

    // Create a generic PendingIntent that will be deliver to this activity. The NFC stack
    // will fill in the intent with the details of the discovered tag before delivering to
    // this activity.
    mPendingIntent = PendingIntent.getActivity(this, 0,
            new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);

    // Setup an intent filter for all MIME based dispatches
    IntentFilter ndef = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);
    try {
        ndef.addDataType("*/*");
    } catch (MalformedMimeTypeException e) {
        throw new RuntimeException("fail", e);
    }
    mFilters = new IntentFilter[] {
            ndef,
    };

    // Setup a tech list for all NfcF tags
    mTechLists = new String[][] { new String[] { NfcF.class.getName() } };
}

@Override
public void onResume() {
    super.onResume();
    mAdapter.enableForegroundDispatch(this, mPendingIntent, mFilters, mTechLists); //CRASHES HERE BECAUSE mAdapter IS NULL
}

@Override
public void onNewIntent(Intent intent) {
    Log.i("Foreground dispatch", "Discovered tag with intent: " + intent);
    mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
}

@Override
public void onPause() {
    super.onPause();
    mAdapter.disableForegroundDispatch(this);
 }
  }

我的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.neka.znacka"
  android:versionCode="1"
  android:versionName="1.0">
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.NFC"></uses-permission>
<uses-feature android:name="android.hardware.nfc" android:required="true" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".Uvodna"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity android:name="Simulator">
    </activity>

</application>

有什么想法吗?

4 个答案:

答案 0 :(得分:2)

你真的无法对模拟器和NFC做任何有趣的事情。您不希望使用TAG_DISCOVERED操作,因为这是最后的操作。在真实设备上生成的意图不能像在NFCDemo演示中那样伪造。在2.3.3中对NFC的更好支持之前,NFCDemo以2.3发布。这太糟糕了。也许未来会有一些选择,但是现在我们都不得不购买具备NFC功能的NFC设备。

答案 1 :(得分:2)

我认为你正在寻找这个NFC Emulator for android。 您需要创建一个以此为目标的新avd。这似乎很有希望,看看它。

编辑:最佳/仅适用于Windows环境:(

答案 2 :(得分:1)

您可以修改NFCDemo代码(将其提升到清单和Eclipse项目中的API级别10),然后让它生成NDEF_DISCOVERED意图,并通过附加内容将NDEF消息附加到Intent。

这可以让你在没有真正硬件的情况下为NFC(特别是NDEF等)开发更多。

答案 3 :(得分:0)

我猜测仿真器根本没有NFC适配器或NFC功能。

  

public static NfcAdapter   getDefaultAdapter(上下文上下文)   自:API等级10

     

帮助获取默认的NFC适配器。

     

大多数Android设备都只有   一个NFC适配器(NFC控制器)。

     

这个助手相当于:

     

NfcManager manager =(NfcManager)   context.getSystemService(Context.NFC_SERVICE);   NfcAdapter适配器=   manager.getDefaultAdapter();

     

参数上下文调用   application的上下文返回

* the default NFC adapter, or null if no NFC adapter exists

编辑:

看起来你可以做一些事情来玩它。查看NFCDemo,看起来您可以生成错误的标签扫描。