Example usage for android.location GnssNavigationMessage getStatus

List of usage examples for android.location GnssNavigationMessage getStatus

Introduction

In this page you can find the example usage for android.location GnssNavigationMessage getStatus.

Prototype

public int getStatus() 

Source Link

Document

Gets the Status of the navigation message contained in the object.

Usage

From source file:com.google.android.apps.location.gps.gnsslogger.FileLogger.java

@Override
public void onGnssNavigationMessageReceived(GnssNavigationMessage navigationMessage) {
    synchronized (mFileLock) {
        if (mFileWriter == null) {
            return;
        }//from www  . j  av a 2s.  com
        StringBuilder builder = new StringBuilder("Nav");
        builder.append(RECORD_DELIMITER);
        builder.append(navigationMessage.getSvid());
        builder.append(RECORD_DELIMITER);
        builder.append(navigationMessage.getType());
        builder.append(RECORD_DELIMITER);

        int status = navigationMessage.getStatus();
        builder.append(status);
        builder.append(RECORD_DELIMITER);
        builder.append(navigationMessage.getMessageId());
        builder.append(RECORD_DELIMITER);
        builder.append(navigationMessage.getSubmessageId());
        byte[] data = navigationMessage.getData();
        for (byte word : data) {
            builder.append(RECORD_DELIMITER);
            builder.append(word);
        }
        try {
            mFileWriter.write(builder.toString());
            mFileWriter.newLine();
        } catch (IOException e) {
            logException(ERROR_WRITING_FILE, e);
        }
    }
}