Java tutorial
//package com.java2s; import android.text.TextUtils; public class Main { public static int getTextToInteger(String text) { if (TextUtils.isEmpty(text)) { return 0; } else if (TextUtils.isDigitsOnly(text)) { return Integer.valueOf(text); } return 0; } }