摘要:
public static boolean isNumeric00(String str){ try{ Integer.parseInt(str); return true; }catch(NumberFormatException e) { System.out.println("异常:\"" + str + "\"不是数字/整数..."); r... 阅读全文
摘要:
将xml中的ListView改用下面的ListViewForScrollView//ScrollView中嵌入ListView,让ListView全显示出来 public class ListViewForScrollView extends ListView{ public ListViewFor 阅读全文