Android examples for Phone:Phone Number
check Phone, 11 digit long
//package com.java2s; public class Main { public static boolean checkPhone(String phone) { if (phone == null || phone.isEmpty()) { return false; }//from w w w . j a v a 2 s . c o m if (phone.matches("\\d{11}")) { return true; } return false; } }