码迷,mamicode.com
首页 > 其他好文 > 详细

生成不同尺寸dimen的xml文件以及文件夹

时间:2017-02-28 13:16:54      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:pre   dir   mini   dex   path   nts   private   resource   output   

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintWriter;


public class MakeXml {
    private final static String rootPath = "C:\\Users\\Administrator\\Desktop\\layoutroot\\values-{0}x{1}\\";

    private final static float dw = 480f;
    private final static float dh = 800f;

    private final static String WTemplate = "<dimen name=\"x{0}\">{1}px</dimen>\n";
    private final static String HTemplate = "<dimen name=\"y{0}\">{1}px</dimen>\n";

    private final static int[] otherPxX = new int[]{};
    private final static int[] otherPxY = new int[]{};

    public static void main(String[] args) {
//        makeString(320, 480);
        makeString(480, 800);
        makeString(480, 640);
//        makeString(480, 854);
//        makeString(540, 960);
//        makeString(600, 1024);
//        makeString(720, 1184);
//        makeString(720, 1196);
//        makeString(720, 1280);
//        makeString(768, 1024);
//        makeString(800, 1280);
//        makeString(1080, 1812);
        makeString(1080, 1920);
//        makeString(1440, 2560);
    }

    public static void makeString(int w, int h) {
        StringBuffer sb = new StringBuffer();
        sb.append("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
        sb.append("<resources>");
        float cellw = w / dw;
        int tempxCount = (int) (dw * 2 / 3);
        for (int i = 1; i < tempxCount + 1; i++) {
            sb.append(WTemplate.replace("{0}", i + "").replace("{1}",
                    change(cellw * i) + ""));
        }

        for (int i = 0; i < otherPxX.length; i++) {
            int temp = otherPxX[i];
            if (temp < dw && temp > tempxCount) {
                sb.append(WTemplate.replace("{0}", temp + "").replace("{1}",
                        change(cellw * temp) + ""));
            }
        }

//        sb.append(WTemplate.replace("{0}", "320").replace("{1}", w + ""));
        sb.append("</resources>");

        StringBuffer sb2 = new StringBuffer();
        sb2.append("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
        sb2.append("<resources>");
        float cellh = h / dh;
        int tempyCount = (int) (dh / 3);
        for (int i = 1; i < tempyCount + 1; i++) {
            sb2.append(HTemplate.replace("{0}", i + "").replace("{1}",
                    change(cellh * i) + ""));
        }

        for (int i = 0; i < otherPxY.length; i++) {
            int temp = otherPxY[i];
            if (temp <= dh && temp > tempyCount) {
                sb.append(WTemplate.replace("{0}", temp + "").replace("{1}",
                        change(cellw * temp) + ""));
            }
        }

//        sb2.append(HTemplate.replace("{0}", "480").replace("{1}", h + ""));
        sb2.append("</resources>");

        String path = rootPath.replace("{0}", w + "").replace("{1}", h + "");
        File rootFile = new File(path);
        if (!rootFile.exists()) {
            rootFile.mkdirs();
        }
        File layxFile = new File(path + "lay_x.xml");
        File layyFile = new File(path + "lay_y.xml");
        PrintWriter pw = null;
        try {
            pw = new PrintWriter(new FileOutputStream(layxFile));
            pw.print(sb.toString());
            pw.close();
            pw = new PrintWriter(new FileOutputStream(layyFile));
            pw.print(sb2.toString());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } finally {
            if (pw != null)
                pw.close();
        }

    }

    public static float change(float a) {
        int temp = (int) (a * 100);
        return temp / 100f;
    }
}

 

生成不同尺寸dimen的xml文件以及文件夹

标签:pre   dir   mini   dex   path   nts   private   resource   output   

原文地址:http://www.cnblogs.com/labixiaoxin/p/6478147.html

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