03 2019 档案

摘要:然后在java中 阅读全文
posted @ 2019-03-21 20:54 Rainm 阅读(3922) 评论(0) 推荐(0)
摘要:设置属性:android:lines="1" 阅读全文
posted @ 2019-03-21 20:51 Rainm 阅读(842) 评论(0) 推荐(0)
摘要:地址:http://www.cnblogs.com/Jarvin/p/3756061.html 阅读全文
posted @ 2019-03-18 11:17 Rainm 阅读(704) 评论(0) 推荐(0)
摘要:private void Time(int i) { Stopwatch sw = new Stopwatch(); sw.Start(); Thread.Sleep(i); sw.Stop(); Console.WriteLine(sw.ElapsedTicks / (decimal)Stopwatch.Frequency * 1000); } 阅读全文
posted @ 2019-03-18 11:16 Rainm 阅读(4198) 评论(0) 推荐(0)
摘要:通过该方法返回的活动实例, 然后在调用Activity的 阅读全文
posted @ 2019-03-17 16:45 Rainm 阅读(6415) 评论(0) 推荐(0)
摘要:1 save.setOnClickListener(new View.OnClickListener() { 2 @Override 3 public void onClick(View v) { 4 Glide.with(itemActivity.this) 5 ... 阅读全文
posted @ 2019-03-17 16:36 Rainm 阅读(7003) 评论(0) 推荐(0)
摘要:1 public static List getFilesAllName(String path){ 2 //传入指定文件夹的路径 File file = new File(path); 3 File[] files = file.listFiles(); 4 List imagePaths = new ArrayList(); 5 for(int... 阅读全文
posted @ 2019-03-17 16:35 Rainm 阅读(2835) 评论(0) 推荐(0)