Android dimen适配

https://blog.csdn.net/hitlion2008/article/details/9200135

ScreenMatch【非常好用】
https://blog.csdn.net/fesdgasdgasdg/article/details/78108169

DimenEx.exe使用 【下载地址】
https://blog.csdn.net/langwang2/article/details/47746183

Java文件生成(拷贝到Android项目中)
https://blog.csdn.net/qq_34095189/article/details/78469261
https://github.com/cheng2016/AndroidUIAdapter

Android 屏幕适配之dimens适配【荐】
https://blog.csdn.net/github_2011/article/details/72636851

Android自动生成 values 适配文件 工具类

/**
 * Created by zhy on 15/5/3.
 */
public class GenerateValueFiles {

    private int baseW;
    private int baseH;
    private String dirStr = "./res";
    private final static String WTemplate = "<dimen name=\"spacing_{0}\">{1}px</dimen>\n";
    private final static String WTemplateSp = "<dimen name=\"textSize_{0}\">{1}px</dimen>\n";
    //private final static String HTemplate = "<dimen name=\"y{0}\">{1}px</dimen>\n";

    /**
     * {0}-HEIGHT
     */
    private final static String VALUE_TEMPLATE = "values-{0}x{1}";
    //private static final String SUPPORT_DIMESION = "320,480;480,800;480,854;540,960;600,1024;720,1184;720,1196;720,1280;768,1024;768,1280;800,1280;1080,1812;1080,1920;1440,2560;";
    private static final String SUPPORT_DIMESION = "320,480;480,800;720,1280;1080,1920;";
    private String fileNmae = "dimens.xml";
    private String supportStr = SUPPORT_DIMESION;
    private int dimeLenght = 1024;
    private int textSizeLength = 100;

    public GenerateValueFiles(int baseX, int baseY, String supportStr) {
        this.baseW = baseX;
        this.baseH = baseY;
        if (!this.supportStr.contains(baseX + "," + baseY)) {
            this.supportStr += baseX + "," + baseY + ";";
        }
        this.supportStr += validateInput(supportStr);
        System.out.println(supportStr);
        File dir = new File(dirStr);
        if (!dir.exists()) {
            dir.mkdir();
        }
        System.out.println(dir.getAbsoluteFile());
    }

    /**
     * @param supportStr w,h_...w,h;
     */
    private String validateInput(String supportStr) {
        StringBuffer sb = new StringBuffer();
        String[] vals = supportStr.split("_");
        int w = -1;
        int h = -1;
        String[] wh;
        for (String val : vals) {
            try {
                if (val == null || val.trim().length() == 0) {
                    continue;
                }
                wh = val.split(",");
                w = Integer.parseInt(wh[0]);
                h = Integer.parseInt(wh[1]);
            } catch (Exception e) {
                System.out.println("skip invalidate params : w,h = " + val);
                continue;
            }

            sb.append(w).append(",").append(h).append(";");
        }
        return sb.toString();
    }


    public void generate() {
        String[] vals = supportStr.split(";");
        for (String val : vals) {
            String[] wh = val.split(",");
            generateXmlFile(Integer.parseInt(wh[0]), Integer.parseInt(wh[1]));
        }
    }

    private void generateXmlFile(int w, int h) {
        StringBuffer sbForWidth = new StringBuffer();
        sbForWidth.append("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
        sbForWidth.append("<resources>");
        float cellw = w * 1.0f / baseW;
        if (cellw != 1.5) {
            cellw = (int) cellw;
        }

        System.out.println("width : " + w + "," + baseW + "," + cellw);
        for (int i = 1; i < dimeLenght; i++) {
            sbForWidth.append(WTemplate.replace("{0}", i + "").replace("{1}",
                    change(cellw * i) + ""));
        }
        sbForWidth.append(WTemplate.replace("{0}", dimeLenght + "").replace("{1}",
                change(cellw * dimeLenght) + ""));
        sbForWidth.append("\n\n\n");
        for (int i = 1; i < textSizeLength; i++) {
            sbForWidth.append(WTemplateSp.replace("{0}", i + "").replace("{1}",
                    change(cellw * i) + ""));
        }
        sbForWidth.append(WTemplateSp.replace("{0}", textSizeLength + "").replace("{1}",
                change(cellw * textSizeLength) + ""));
        sbForWidth.append("</resources>");

        /*StringBuffer sbForHeight = new StringBuffer();
        sbForHeight.append("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
        sbForHeight.append("<resources>");
        float cellh = h *1.0f/ baseH;
        System.out.println("height : "+ h + "," + baseH + "," + cellh);*/

        //for (int i = 1; i < baseH; i++) {
        //sbForHeight.append(HTemplate.replace("{0}", i + "").replace("{1}",
        //change(cellh * i) + ""));
        //}
        //sbForHeight.append(HTemplate.replace("{0}", baseH + "").replace("{1}",
        //h + ""));
        //sbForHeight.append("</resources>");

        File fileDir = new File(dirStr + File.separator
                + VALUE_TEMPLATE.replace("{0}", h + "")//
                .replace("{1}", w + ""));
        fileDir.mkdir();
        File layxFile = new File(fileDir.getAbsolutePath(), fileNmae);
        //File layyFile = new File(fileDir.getAbsolutePath(), "lay_y.xml");
        try {
            PrintWriter pw = new PrintWriter(new FileOutputStream(layxFile));
            pw.print(sbForWidth.toString());
            pw.close();
            //pw = new PrintWriter(new FileOutputStream(layyFile));
            //pw.print(sbForHeight.toString());
            //pw.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }

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

    public static void main(String[] args) {
        int baseW = 320;
        int baseH = 480;
        String addition = "";

        try {
            if (args.length >= 3) {
                baseW = Integer.parseInt(args[0]);
                baseH = Integer.parseInt(args[1]);
                addition = args[2];
            } else if (args.length >= 2) {
                baseW = Integer.parseInt(args[0]);
                baseH = Integer.parseInt(args[1]);
            } else if (args.length >= 1) {
                addition = args[0];
            }
        } catch (NumberFormatException e) {
            System.err.println("right input params : java -jar xxx.jar width height w,h_w,h_..._w,h;");
            e.printStackTrace();
            System.exit(-1);
        }
        new GenerateValueFiles(baseW, baseH, addition).generate();
    }
}

本文作者:风之旅人

本文链接:https://www.cnblogs.com/jooy/p/13821355.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。

posted @   javakam  阅读(522)  评论(0编辑  收藏  举报
编辑推荐:
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
阅读排行:
· Sdcb Chats 技术博客:数据库 ID 选型的曲折之路 - 从 Guid 到自增 ID,再到
· 99%的人不知道,桥接模式失败的真正原因是它!
· .NET Core GC压缩(compact_phase)底层原理浅谈
· Winform-耗时操作导致界面渲染滞后
· Phi小模型开发教程:C#使用本地模型Phi视觉模型分析图像,实现图片分类、搜索等功能
点击右上角即可分享
微信分享提示
评论
收藏
关注
推荐
深色
回顶
收起