摘要:
滑动API:Swipe(int start x,int start y,int end x,int y,duration) 解释: int start x-开始滑动的x坐标;int start y -开始滑动的y坐标 ;int end x -结束点x坐标;int end y -结束点y坐标; dur 阅读全文
摘要:
public class IsString { public static boolean isNum(String str){ return str.matches("^[-+]?(([0-9]+)([.]([0-9]+))?|([.]([0-9]+))?)$"); } @Test public void test(){ Stri... 阅读全文