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

Android清除工程中无用的资源文件

时间:2015-05-22 11:43:20      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:android   清除资源文件   优化   

一、调用Android lint命令查找出没有用到的资源,并生成一个清单列表:

技术分享
命令:lint –check “UnusedResources” [project_path] > result.txt
执行完之后会生成一个清单文件,内容如下:
技术分享

二、使用代码自动删除无用的文件:

public class DelAction
{
    public static void main(String[] args)
        throws IOException
    {
        String projectPath = "***";
        BufferedReader reader = new BufferedReader(new FileReader("result路径"));
        String line;
        int count = 0;
        while ((line = reader.readLine()) != null)
        {
            if (line.contains("UnusedResources") && !line.contains("res/value") && !line.contains("appcompat"))
            {
                count++;
                int end = line.indexOf(":");
                if (end != -1)
                {
                    String file = line.substring(0, end);
                    String f = projectPath + file;
                    boolean flag =
                        new File("【拼出文件完整路径】" + f.replace("***", "")).delete();                    System.out.println("【拼出文件完整路径】" + f + "=>del=>" + flag);
                }
            }
        }
    }
}

我们往往要多次重复执行上面的操作,才能真正彻底的清除工程中无用的资源文件。

Android清除工程中无用的资源文件

标签:android   清除资源文件   优化   

原文地址:http://blog.csdn.net/u011771755/article/details/45913091

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