安卓那些工具类(持续更新)


这次先上传2个 一个是dp与px互转的 另一个是toast工具类 dp_px和toast 再贴一个小众方法 字符串转GBK格式
public static String toGBK(String source) throws UnsupportedEncodingException {
        StringBuilder sb = new StringBuilder();
        byte[] bytes = source.getBytes("GBK");
        for (byte b : bytes) {
            sb.append("%" + Integer.toHexString((b & 0xff)).toUpperCase());
        }

        return sb.toString();
    }