如何将Long值放在共享首选项中?

时间:2011-12-10 04:56:33

标签: android sharedpreferences

我无法将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值?

1 个答案:

答案 0 :(得分:0)

也许你没有长时间使用。

Long.parseLong(string);  

如果它是一个字符串,请使用它。

除了你的LogCat告诉你什么......