zoukankan      html  css  js  c++  java
  • android 的几个黄色警告解决办法(转)

    转自:http://my.eoe.cn/864234/archive/5162.html

    1:Handler

    1
    2
    3
    4
    5
    6
    7
    8
        // This Handler class should be static or leaks might occur: IncomingHandler
        @SuppressLint("HandlerLeak")
        private Handler mHandler = new Handler() {
            @Override
            public void handleMessage(Message msg) {
    
            };
        };
    

    解决方法:

    1
    2
    3
    4
    5
    6
        private Handler mHandler = new Handler(new Handler.Callback() {
            @Override
            public boolean handleMessage(Message msg) {
                return false;
            }
        });
    

    警告原因:

    2:SimpleDateFormat

    1
    2
    3
    4
    5
    6
        // 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");
    

    解决方法:

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

    警告原因:

    **3:new HashMap() **

    1
    2
         @SuppressLint("UseSparseArrays")
        public static Map<Integer, String> CMD_MAP = new HashMap<Integer, String>();
    

    解决方法:

    1
     //TODO
    

    警告原因:Use new SparseArray(...) instead for better performance

    4:"String".toUpperCase(); "String".toLowerCase();

    1
    2
         @SuppressLint("DefaultLocale")
        boolean  b = "String".toUpperCase().equals("STRING");
    

    解决方法:

    1
     boolean  b = "String".equalsIgnoreCase("STRING");
    

    警告原因:Implicitly using the default locale is a common source of bugs: Use toUpperCase(Locale) instead

  • 相关阅读:
    告别恼人的水平滚动条——滚动条宽度到底是多少?
    A用户控件包含B用户控件,在B里头如何取得A控件
    ASP.NET URL重写
    Asp.net(c#)发送电子邮件
    优化网站性能的14条规则
    复杂度的来源—高性能
    构建命令行式交易区块链应用
    复杂度来源—低成本、安全、规模
    实现一个简易的区块链
    复杂度来源—可扩展性
  • 原文地址:https://www.cnblogs.com/qq78292959/p/4391550.html
Copyright © 2011-2022 走看看