08 2017 档案
摘要:<!-- Default theme for dialog windows and activities (on API level 10 and lower), which is used by the {@link android.app.Dialog} class. This changes
阅读全文
摘要:void animateViewIn() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) { ViewCompat.setTranslationY(mView, mView.getHeight()); ViewCompat.anim...
阅读全文
摘要:匹配所有字母 [a-zA-Z] 匹配所有数字 [0-9] 匹配所有字母和数字 [a-zA-Z0-9] 匹配次数: * 匹配前面的子表达式任意次 + 匹配前面的子表达式一次或多次(大于等于1次) ? 匹配前面的子表达式零次或一次 {n} n是一个非负整数。匹配确定的n次。 {n,} n是一个非负整数。
阅读全文