DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
View Events Video Library
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Integrating PostgreSQL Databases with ANF: Join this workshop to learn how to create a PostgreSQL server using Instaclustr’s managed service

Mobile Database Essentials: Assess data needs, storage requirements, and more when leveraging databases for cloud and edge applications.

Monitoring and Observability for LLMs: Datadog and Google Cloud discuss how to achieve optimal AI model performance.

Automated Testing: The latest on architecture, TDD, and the benefits of AI and low-code tools.

Related

  • The 12 Biggest Android App Development Trends in 2023
  • Android Cloud Apps with Azure
  • Implement Real-time Locating in an Android App
  • How To Use Constraint Layout in Xamarin.Android

Trending

  • The Emergence of Cloud-Native Integration Patterns in Modern Enterprises
  • Top 7 Best Practices DevSecOps Team Must Implement in the CI/CD Process
  • Leveraging FastAPI for Building Secure and High-Performance Banking APIs
  • Creating a Deep vs. Shallow Copy of an Object in Java
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Deployment
  4. How to Write NFC Tags in Android

How to Write NFC Tags in Android

In this post, we will explore how to use the Android API to write NFC smart tags.

Francesco Azzola user avatar by
Francesco Azzola
·
Jan. 12, 16 · Tutorial
Like (3)
Save
Tweet
Share
17.49K Views

Join the DZone community and get the full member experience.

Join For Free

This post describes how to use NFC in Android to write smart tags. Android smartphones are capable not only to read NFC tags that contains data like URL, phone numbers and so on but using Android NFC Api is possible to write NFC tags. In this post, we will explore how to use Android API to write NFC smart tags.

What is NFC Technology?

Before digging into the details about how to use NFC in Android, it is useful to describe a bit about NFC technology.

Near Field Technology (NFC) is a technology that enables short-range communication between two compatible devices that support this technology. NFC requires that one device behaves as the transmitter and the other one as a receiver. NFC enabled devices can be grouped in two categories:

  • Active
  • Passive

Active NFC devices are capable of sending and receiving data and can exchange data with a passive device. Passive devices can send data to other NFC-enabled devices without a power source. A typical passive device is NFC tag that can be used as advertising system for example.

NFC technology is available on the newest Android smartphones and NFC tags are used to active advertising, smart payment etc. It is important than to know how to write NFC tags in Android.

Getting Started Using NFC

The first thing an NFC-enabled Android app should do is verifying if the NFC is present and if it is active:

@Override
protected void onCreate(Bundle savedInstanceState) {
   ... 
   nfcMger = new NFCManager(this);
   ..
}

where nfcManager is the class that handles NFC details and implementation using NfcAdapter: 

public class NFCManager {
 
    private Activity activity;
    private NfcAdapter nfcAdpt;
 
    public NFCManager(Activity activity) {
        this.activity = activity;
    }
 
    public void verifyNFC() throws NFCNotSupported, NFCNotEnabled {
 
        nfcAdpt = NfcAdapter.getDefaultAdapter(activity);
 
        if (nfcAdpt == null)
            throw new NFCNotSupported();
 
        if (!nfcAdpt.isEnabled())
            throw new NFCNotEnabled();
 
    }
}

Just to recall if you have not read the getting started with NFC tutorial, it is necessary to register the android app so that it receives notification when the Android device is near the NFC tag. To enable this notification we have to use NFC foreground dispatch: 

@Override
protected void onResume() {
  super.onResume();
  try {
    nfcMger.verifyNFC();
    Intent nfcIntent = new Intent(this, getClass());
    nfcIntent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, nfcIntent, 0);
    IntentFilter[] intentFiltersArray = new IntentFilter[] {};
    String[][] techList = new String[][] { 
                { android.nfc.tech.Ndef.class.getName() },  
                { android.nfc.tech.NdefFormatable.class.getName() }
             };
     NfcAdapter nfcAdpt = NfcAdapter.getDefaultAdapter(this);
            nfcAdpt.enableForegroundDispatch(this, pendingIntent, intentFiltersArray, techList);
     }
     catch(NFCManager.NFCNotSupported nfcnsup) {
        Snackbar.make(v, "NFC not supported", Snackbar.LENGTH_LONG).show();
     }
     catch(NFCManager.NFCNotEnabled nfcnEn) {
        Snackbar.make(v, "NFC Not enabled", Snackbar.LENGTH_LONG).show();
     }
}

How To Write A NFC Tag In Android

Now the Android app is ready to handle the NFC tag and when the Android smartphone gets near the NFC tag, the event is notified to the app. The next step is writing the data on the tag. The method is quite simple: 

public void writeTag(Tag tag, NdefMessage message)  {
  if (tag != null) {
     try {
        Ndef ndefTag = Ndef.get(tag);
        if (ndefTag == null) {
           // Let's try to format the Tag in NDEF
           NdefFormatable nForm = NdefFormatable.get(tag);
           if (nForm != null) {
              nForm.connect();
              nForm.format(message);
              nForm.close();
            }
        }
        else {
           ndefTag.connect();
           ndefTag.writeNdefMessage(message);
           ndefTag.close();
        }
     }
     catch(Exception e) {
         e.printStackTrace();
     }
  }
}

This method accepts an abstract representation of the NFC tag we want to write and the NdefMessage containing the message to write. As the first step, the NFCManager class tries to get the Ndef tag (line 4). If the tag is null, the app tries to "format" the tag and the write the message. If the tag is already formatted, the Android app tries to connect to the tag abstract representation and write the NdefMessage.

Write URL Into NFC Tag With Android App

Now it is known how to write data into NFC tag, it is time to start writing some simple information.

As the first example, the Android NFC app writes a URL:

public NdefMessage createUriMessage(String content, String type) {
     NdefRecord record = NdefRecord.createUri(type + content);
     NdefMessage msg = new NdefMessage(new NdefRecord[]{record});
     return msg;
}

The code is very simple, using NdefRecord provided by Android NFC API, the Android app creates a Uri record. As we already know, a NdefMessage is an array of record, so we create an NFC Ndef Message holding only one record: the Uri record.In this case, type holds HTTP value because it is a link.

If we want to write an NFC tag that holds a phone number so that when the user taps with the smartphone the tag a phone call is triggered, we have to pass as type tel:.

android_nfc_writer_phoneandroid_nfc_make_call

Write Text Data Into NFC Tag

The last example is writing text data in an NFC tag. In this case following NFC specs the code is very simple:

public NdefMessage createTextMessage(String content) {
  try {
     // Get UTF-8 byte
     byte[] lang = Locale.getDefault().getLanguage().getBytes("UTF-8");
     byte[] text = content.getBytes("UTF-8"); // Content in UTF-8

     int langSize = lang.length;
     int textLength = text.length;

     ByteArrayOutputStream payload = new ByteArrayOutputStream(1 + langSize + textLength);
     payload.write((byte) (langSize & 0x1F));
     payload.write(lang, 0, langSize);
     payload.write(text, 0, textLength);
     NdefRecord record = new NdefRecord(NdefRecord.TNF_WELL_KNOWN, 
                             NdefRecord.RTD_TEXT, new byte[0], 
                             payload.toByteArray());
     return new NdefMessage(new NdefRecord[]{record});
  }
  catch (Exception e) {
     e.printStackTrace();
  }

  return null;
}

Implementing The Android UI For NFC App

The last step is implementing the UI so that the Android app handles different NFC record type and the user can insert the data to write. The app uses a spinner that holds the different record types and an EditText that holds the data to write and finally a button (a Floating Action Button) to start the operation. As soon as the user clicks on the button the app starts waiting for the NFC tag. When the user taps on the tag, the app starts writing the data. 

android_nfc_writer

android_nfc_writer_url_snackbar

Android (robot) app

Published at DZone with permission of Francesco Azzola, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • The 12 Biggest Android App Development Trends in 2023
  • Android Cloud Apps with Azure
  • Implement Real-time Locating in an Android App
  • How To Use Constraint Layout in Xamarin.Android

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: