在项目中遇到了这个问题.头痛了很久,总是无法重现,也不能很好的解决.总是在息屏后一段时间,就会报java.lang.IllegalArgumentException:No view found for id for....的问题,然后程序就崩溃了.相信很多朋友也有和我一样遇到这个问题的.那么这个问题怎么去解决呢? 在仔细研究fragment的manager后,下面是我发现的东西 什么鬼?怎么会有两个fragmentManager.这两个东西有什么关系呢? API上面说了一大堆,我这里简单总结一下…
参考资料: shell字符串分割再循环:http://www.shangxueba.com/jingyan/1633455.html linux shell中 if else以及大于.小于.等于逻辑表达式介绍:http://www.jb51.net/article/34332.htm Shell数组:shell数组的定义.数组长度:http://c.biancheng.net/cpp/view/7002.html shell 数组长度:http://blog.csdn.net/shaobingj…
using System; using System.IO; using System.Text.RegularExpressions; using System.Windows.Browser; namespace SL_COMMON { public class Utils { #region String字符串类 /**/ /// <summary> /// 过滤字符 /// </summary> public static string Replace(string str…
一:字符串转换成date String datatime="2015-09-22 15:16:48"; SimpleDateFormat form = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = form.parse(datatime); 二:date转换成String SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-…