Example usage for android.telephony PhoneNumberUtils FORMAT_JAPAN

List of usage examples for android.telephony PhoneNumberUtils FORMAT_JAPAN

Introduction

In this page you can find the example usage for android.telephony PhoneNumberUtils FORMAT_JAPAN.

Prototype

int FORMAT_JAPAN

To view the source code for android.telephony PhoneNumberUtils FORMAT_JAPAN.

Click Source Link

Document

Japanese formatting

Usage

From source file:android.pim.vcard.VCardUtils.java

public static int getPhoneNumberFormat(final int vcardType) {
    if (VCardConfig.isJapaneseDevice(vcardType)) {
        return PhoneNumberUtils.FORMAT_JAPAN;
    } else {//from w ww .  j ava2 s.co  m
        return PhoneNumberUtils.FORMAT_NANP;
    }
}