这个是自动编译库的名字,你可以自己设置编译库的名字,在libarary标签中右键新建库,然后compile-compile可以添加编译的文件。或者直接file-import添加编译好的库。
public static boolean isNumeric(String str){
for (int i = str.length();--i>=0;){
if (!Character.isDigit(str.charAt(i))){
return false;
}
}
return true;
}