码迷,mamicode.com
首页 > 移动开发 > 详细

安卓奇葩问题之:运行OK,打包安装崩溃(原因是:代码不规范导致编译出错)

时间:2016-10-13 14:41:59      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

咳咳,还是那句话,真是日了狗了

这个问题真的很难找,废话不多少,上酸菜。

报错信息是这个方法返回的图片找不到

public static int getImgID(boolean isBig, int id) {
        if (id == -2)
            return R.mipmap.tianjia;
        if (id == -1)
            return R.mipmap.jiahao;
        if (isBig) {
            switch (id) {
                case 0:
                    return R.mipmap.jrfu;
                case 1:
                    return R.mipmap.meishi;
                case 2:
                    return R.mipmap.shenghuo;
                case 3:
                    return R.mipmap.yule;
                case 4:
                    return R.mipmap.dying;
                case 5:
                    return R.mipmap.chuxing;
                case 6:
                    return R.mipmap.jingdian;
                case 7:
                    return R.mipmap.gouwu;
                case 8:
                    return R.mipmap.jiudian;
                case 9:
                    return R.mipmap.zhiyuan;
                case 10:
                    return R.mipmap.xsyl;
                case 11:
                    return R.mipmap.jrfu;
            }
            return R.mipmap.guanggao;
        } else {
            switch (id) {
                case 0:
                    return R.mipmap.jrfw;
                case 1:
                    return R.mipmap.ms;
                case 2:
                    return R.mipmap.shfw;
                case 3:
                    return R.mipmap.yl;
                case 4:
                    return R.mipmap.dy;
                case 5:
                    return R.mipmap.cx;
                case 6:
                    return R.mipmap.jingdian_xiao;
                case 7:
                    return R.mipmap.gw;
                case 8:
                    return R.mipmap.jd;
                case 9:
                    return R.mipmap.zyhn_xiao;
                case 10:
                    return R.mipmap.xsyl_xiao;
                case 11:
                    return R.mipmap.jrfw;
            }
            return R.mipmap.logo;
        }
    }

问题来了,运行代码是OK的。

然后天空一声巨响,醍醐灌顶。代码写的不规范,没有用break,编译有问题,才会报错的。

 

安卓奇葩问题之:运行OK,打包安装崩溃(原因是:代码不规范导致编译出错)

标签:

原文地址:http://www.cnblogs.com/a446276468/p/5955912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!