私は Android API 14 (4.0 - Ice Cream Sandwich) 用の簡単なプログラムに取り組んでおり、NFC をテストしています (これをより大きなプログラムで使用します)。プログラムには 2 つの EditText があり、1 つはラベル付きの入力、もう 1 つはラベル付きの出力です。目標は、アプリを実行している 2 台の電話を一緒にタップすると、入力ボックスに入力されたテキストがもう一方の電話の出力ボックスに表示されることです (これは両方の方法で機能するはずです)。コードは正常に実行されますが、電話を一緒にタップしても何も起こりません。コードは以下です。
package com.sample.nfctest;
import java.sql.Date;
import android.app.Activity;
import android.content.Intent;
import android.nfc.FormatException;
import android.nfc.NdefMessage;
import android.nfc.NdefRecord;
import android.nfc.NfcAdapter;
import android.os.Bundle;
import android.os.Parcelable;
import android.widget.EditText;
import android.widget.Toast;
public class NFCTestActivity extends Activity {
EditText input;
EditText output;
NfcAdapter mAdapter;
NdefMessage msgs[];
NdefRecord msg;
NfcAdapter nfcAdapter;
boolean somethingHappened = false;
double initialTime;
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
input = (EditText) findViewById(R.id.editText1);
output = (EditText) findViewById(R.id.editText2);
nfcAdapter = NfcAdapter.getDefaultAdapter(this);
if (nfcAdapter == null)
{
Toast.makeText(this, "No NFC. Sucks to suck.", Toast.LENGTH_LONG).show();
System.out.println("No NFC. Sucks to suck.");
return;
}
initialTime = new Date(0).getTime();
while(!somethingHappened)
{
if(30000 < new Date(0).getTime() - initialTime)
somethingHappened = true;
onResume();
}
}
public void onResume()
{
super.onResume();
msg = new NdefRecord(NdefRecord.TNF_ABSOLUTE_URI, "text/plain".getBytes(),
new byte[0], input.getText().toString().getBytes());
input.setText("");
if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(getIntent().getAction())) {
Intent intent = getIntent();
Parcelable[] rawMsgs = intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES);
if (rawMsgs != null) {
somethingHappened = true;
msgs = new NdefMessage[rawMsgs.length];
for (int i = 0; i < rawMsgs.length; i++) {
msgs[i] = (NdefMessage) rawMsgs[i];
output.append(msgs[i].toString());
}
}
}
//process the msgs array
NdefRecord send[] = {msg};
try{
nfcAdapter.setNdefPushMessage(new NdefMessage(send), this);
somethingHappened = true;
}catch(Exception e){}
}
}
これが main.xml ファイルです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="20dp"
android:layout_marginTop="15dp"
android:text="@string/Inputs"
android:textAppearance="?android:attr/textAppearanceLarge" />
<EditText
android:id="@+id/editText1"
android:layout_width="300dp"
android:layout_height="100dp"
android:layout_below="@+id/textView1"
android:layout_centerHorizontal="true"
android:layout_marginTop="19dp" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/editText1"
android:layout_below="@+id/editText1"
android:layout_marginTop="19dp"
android:text="@string/Output"
android:textAppearance="?android:attr/textAppearanceLarge" />
<EditText
android:id="@+id/editText2"
android:layout_width="300dp"
android:layout_height="100dp"
android:layout_alignLeft="@+id/textView2"
android:layout_below="@+id/textView2"
android:layout_marginTop="18dp" />
</RelativeLayout>
</LinearLayout>
そして、これがマニフェストです。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sample.nfctest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="14" />
<uses-permission android:name="android.permission.NFC"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".NFCTestActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.TAG_DISCOVERED"/>
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme=""
android:host="com.sample.nfctest"
android:pathPrefix="" />
</intent-filter>
</manifest>
余談ですが、エミュレータを使用してこのような NFC アプリケーションをテストする方法はありますか? テスト用に誰かの電話を借りています(Nexus 7とGalaxy Nexusを使用)。
前もって感謝します。