我无法将Long
值放在共享首选项中。当我放String
时它工作正常。
以下是代码:
SharedPreferences repeat_rowId = getSharedPreferences("repeat_rowId", 0);
SharedPreferences.Editor editor = repeat_rowId.edit();
editor.putLong("rowId", mRowId);// I am getting the Error in this line..
editor.putString("row_str","ABC");
editor.commit();
如何使用Long
值?
答案 0 :(得分:0)
也许你没有长时间使用。
Long.parseLong(string);
如果它是一个字符串,请使用它。
除了你的LogCat告诉你什么......