SharedPreferences布尔值的一些问题

时间:2015-08-12 07:59:21

标签: java android boolean sharedpreferences

我有三个类,menu.class,level1.class,level2.class。

我有以下target数据

main.xml

我有以下<Button android:id="@+id/f1" android:layout_width="50dp" android:layout_height="50dp" android:layout_marginRight="10dp" android:background="@drawable/button1" /> <ImageView android:id="@+id/f2lock" android:layout_width="50dp" android:layout_height="50dp" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:src="@drawable/levellocked" /> <Button android:id="@+id/f2" android:layout_width="50dp" android:layout_height="50dp" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:background="@drawable/button2" android:visibility="gone" /> 数据

main.class

f2按钮的条件为GONE,因此在f1 =(Button)findViewById(R.id.f1); f1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v){ Intent i =new Intent(getApplicationContext(), level1.class); startActivity(i); } }); f2=(Button)findViewById(R.id.f2) f2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v){ Intent i =new Intent(getApplicationContext(), level2.class); startActivity(i); } });

level1.class

这意味着f2按钮if(answer.equalsIgnoreCase("8")) SharedPreferences preferences = getSharedPreferences("preferences", MODE_PRIVATE); boolean levelTwoUnlocked = preferences.getBoolean("f2"); if(levelTwoUnlocked){ f2.setVisibility(View.VISIBLE); f2lock.setVisibility(View.GONE); } else { f2.setVisibility(View.GONE); f2lock.setVisibility(View.VISIBLE); } ,但我在setVisibility(View.VISIBLE)

中收到此错误
  

SharedPreferences类型中的方法getBoolean(String,boolean)   不适用于参数(String)

更新。

我已经改变了这样的代码

boolean levelTwoUnlocked = preferences.getBoolean("f2");

但是游戏是强制关闭的,代码放在错误的类中了吗?因为我将上面的代码放在if(answer.equalsIgnoreCase("8")) SharedPreferences preferences = getSharedPreferences("preferences", MODE_PRIVATE); boolean levelTwoUnlocked = preferences.getBoolean("f2", false); if(levelTwoUnlocked){ f2.setVisibility(View.VISIBLE); f2lock.setVisibility(View.GONE); } else { f2.setVisibility(View.GONE); f2lock.setVisibility(View.VISIBLE); } 而不是level1.class

1 个答案:

答案 0 :(得分:2)

这是android文档。

public abstract boolean getBoolean (String key, boolean defValue)

从首选项中检索布尔值。

<强>参数

key:要检索的首选项的名称。

defValue:如果此首选项不存在,则返回值。

<强>返回

返回首选项值(如果存在)或defValue。如果存在此名称不是布尔值的首选项,则抛出ClassCastException。

现在你的问题:

它清楚地表明你也需要传递一个默认值。

像这样改变你的电话

boolean levelTwoUnlocked = preferences.getBoolean("f2", false); // or true according to your default value

PS:请不要认为我很粗鲁,但如果错误明确说明方法定义不匹配或在任何其他此类情况下,您应该至少查找一次文档。