首页 > 移动平台 > 详细

Android中黄色警告提示消强迫症

时间:2015-03-05 12:35:26      阅读:217      评论:0      收藏:0      [点我收藏+]

写代码的时候,不希望整个工程中到处都是黄色的感叹号,那样的话,打开项目,让人感觉整个项目一点都不清晰。

所以写此贴,将平时碰到的警告全部总结集中起来。 

1:Handler

// This Handler class should be static or leaks might occur:IncomingHandler 
		@SuppressLint("HandlerLeak")
		private Handler handler = new Handler() {
			@Override
			public void handleMessage(Message msg) {
			};
		};

解决方法: 

private Handler handler = new Handler(new Handler.Callback() {
			@Override
			public boolean handleMessage(Message msg) {
				return false;
			}
		});

2:SimpleDateFormat 

// To get local formatting use getDateInstance(), getDateTimeInstance(),
		// or // getTimeInstance(), or use new SimpleDateFormat(String template,Locale  locale) with for example Locale.US for ASCII dates.
		@SuppressLint("SimpleDateFormat")
		SimpleDateFormat simpleDateFormat = new SimpleDateFormat(
				"yyyy-MM-ddHH:mm:ss");

解决方法: 

SimpleDateFormat newSimpleDateFormat = new SimpleDateFormat(
				"yyyy年MM月dd日HH时mm分", Locale.getDefault());

  

Android中黄色警告提示消强迫症

原文:http://www.cnblogs.com/tangxiaocheng/p/4315402.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!