我使用Mike Penz的MaterialDrawer库。
在我的OnCreate中,配置文件将从linkedHashMap添加到抽屉中。选择配置文件后,新选择的配置文件将保存在sharedPreference中。
我的问题:如果我再次启动应用,如何将配置文件(名称存储在sharedPreference中)设置为所选的?
修改:没有标识符?或者这不可能吗?
答案 0 :(得分:1)
MaterialDrawer
要求给予identifier
元素,以便您可以重新选择它们(并且Drawer
本身可以重新选择它们再次选择配置更改时选择它们。
只需提供任何ID。你可以使用这样的东西:
private static long hashString64Bit(CharSequence str) {
long result = 0xcbf29ce484222325L;
final int len = str.length();
for (int i = 0; i < len; i++) {
result ^= str.charAt(i);
result *= 0x100000001b3L;
}
return result;
}
为string
生成长标识符,或者生成某种哈希码。