增加彩信图片的宽度和高度

时间:2018-11-16 10:57:23

标签: java android image photo mms

所以我有一个SMS应用程序,正在发送MMS图片。图片在发送前已调整大小。我想更改maxImageWidthmaxImageHeight,以便发送的图片更大。

我有一个类BugleCarrierConfigValuesLoader和一个方法:

/**
 * Loading carrier config values
 *
 * @param subId which SIM to load for
 * @param values the result to add to
 * @return the source of the config, could be "resources" or "resources+system"
 */
private String loadLocked(final int subId, final Bundle values) {
    // Load from resources in earlier platform
    loadFromResources(subId, values);
    if (OsUtil.isAtLeastL()) {
        // Load from system to override if system API exists
        loadFromSystem(subId, values);
        return "resources+system";
    }
    return "resources";
}

此方法会加载maxImageWidth=640maxImageHeight=480之类的值。

我想理解为什么这样做。为什么我不能只用maxImageWidth值做最终的静态int。为什么需要从资源或系统中加载这些值。

0 个答案:

没有答案