Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am a beginner of Android programming, currently I am working in creating a program which will launch after sensing a NFC tag, and then read the data from the tag. I have read some posts before, therefore I know that I have to make use of foreground dispatch method to finsih the mission. I have already finish coding in, however, when I try to test my code, it cannot launch my program, here are my codes, can anyone give me some advices what are the problems

public class NFC extends Activity {

NFCForeGround nfcForeGround = null;
NdefMessage[] messages = null;

@Override
public void onCreate(Bundle savedInstanceState) {
    //Create the activity
    super.onCreate(savedInstanceState);
    //Form the layout
    setContentView(R.layout.activity_nfc);
    //Change the background color of layout
    View mlayout = findViewById(R.id.laidout);
    mlayout.setBackgroundColor(Color.GREEN); 
    //Give value to the variable
    nfcForeGround = new NFCForeGround(this);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_nfc, menu);
    return true;
}

@Override
public void onPause(){
    //Pause the activity
    super.onPause();
    //Disable NFC Foreground dispatch
    nfcForeGround.disable();
}

@Override
public void onResume(){
    //Resume the activity
    super.onResume();
    //Enable the Foreground dispatch
    nfcForeGround.enable();
}

@Override
public void onNewIntent(Intent intent){
    //Set the intent
    setIntent(intent);
    //Get the action
    String action = intent.getAction();
    //Check if the action equals to Discover a NFC tag 
    if(nfcForeGround.getNfcAdapter().ACTION_NDEF_DISCOVERED.equals(action)||
        nfcForeGround.getNfcAdapter().ACTION_TECH_DISCOVERED.equals(action)){
        //Fetch the message
        Parcelable[] rawMessage =             
                intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES);
        //Check if rawMessage is null
        if(rawMessage!=null){
            //Check the rawMessage into NdefMessage format
            messages = new NdefMessage[rawMessage.length];
            for(int i=0; i<rawMessage.length; i++)
                messages[i] = (NdefMessage) rawMessage[i];
        }else{
            //Message is not in Parcelable format
            byte[] empty = new byte[] {};
            //Fetch message and switch the format
            NdefRecord record = new NdefRecord(NdefRecord.TNF_UNKNOWN, empty, empty, empty);
            NdefMessage message = new NdefMessage(new NdefRecord[]{
                record
            });
            messages = new NdefMessage[]{
                    message
            };
        }
    }else{
        finish();
    }
}
}


public class NFCForeGround {
private NfcAdapter nfcadapter;
//Variables needed for using the enableForegroundDispatch function
private PendingIntent intent;
private Activity act;
private IntentFilter FilterArray[];
private String TechLists[][];


public NFCForeGround(Activity activity){
    super();
    //Set the variable act to activity
    this.act = activity;
    //Give value to variable nfcadapter
    nfcadapter = NfcAdapter.getDefaultAdapter(activity.getApplicationContext());

    //Give value to variable intent
    intent = PendingIntent.getActivity(act, 0, new Intent(act, 
            act.getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);

    //Give value to variable ndef 
    IntentFilter ndef = new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED);

    try {
        //Filter for the intent NfcAdapter.ACTION_NDEF_DISCOVERED with mime type "type/plain"
        ndef.addDataType("text/plain");
    } catch (MalformedMimeTypeException e) {

    }
    //Give value to FilterArray
    FilterArray = new IntentFilter[]{ndef};
    //Give value to TechLists
    TechLists = new String[][]{new String[]{NfcA.class.getName()}};

}

public void enable(){
    //Enable the Dispatch
    nfcadapter.enableForegroundDispatch(act, intent, FilterArray, TechLists);
}

public void disable(){
    //Disable the Dispatch
    nfcadapter.disableForegroundDispatch(act);
}

public NfcAdapter getNfcAdapter() { 
    //Return the NFC Adapter variable
    return nfcadapter; 
}  
}

And below is the manifest file, I have declared the intent filter in respond to the NFC detection.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.nfc"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="10"
    android:targetSdkVersion="15" />
<uses-feature android:name="android.hardware.nfc" android:required="true"/>
<uses-permission android:name="android.permission.NFC"/>
<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".NFC"
        android:label="@string/title_activity_nfc" >
        <intent-filter>
            <action android:name="android.nfc.action.NDEF_DISCOVERED" />
            <category android:name="android.intent.category.LAUNCHER" />
            <data android:mimeType="mime/type"/>
        </intent-filter>
        <intent-filter> 
             <action android:name="android.nfc.action.TECH_DISCOVERED"/> 
             <category android:name="android.intent.category.DEFAULT"/> 
        </intent-filter> 
             <meta-data android:name="android.nfc.action.TECH_DISCOVERED" 
                        android:resource="@xml/nfc_tech_filter" />
    </activity>
</application>

</manifest>

I think the problem is coming from my program cannot really catch the NFC detection event, could anyone give me a hand, thank you.

share|improve this question
What type of card are you using? And what is written on it? – Kamen Goranchev Jul 24 '12 at 22:50
oh, actually I am using the NDEF tag. But I have already solved the problem. Since I had too much app able to handle the tag, so my app was not the default one, therefore I made use of AAR. And the app can launch now, anyway, thank you for asking! – Conrad Jul 25 '12 at 1:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.