您好,登錄后才能下訂單哦!
在使用SystemProperties時出現了開機后不斷重啟的問題,看log 篩選system android 找到
E/AndroidRuntime(14952): at android.os.SystemProperties.get(SystemProperties.java:64)
然后查看Framework源碼SystemProperties.java:64,定位到如下位置:
/**
* Get the value for the given key.
* @return if the key isn't found, return def if it isn't null, or an empty string otherwise
* @throws IllegalArgumentException if the key exceeds 32 characters
*/
public static String get(String key, String def) {
if (key.length() > PROP_NAME_MAX) {
throw new IllegalArgumentException("key.length > " + PROP_NAME_MAX);
}
return native_get(key, def);
}
原來SystemProperties的key長度不能超過30字節。自此問題解決
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。