这是我在onCreate方法中的代码
SharedPreferences sp = getSharedPreferences("key", Context.MODE_PRIVATE);
String tValue = sp.getString("textvalue","");
coins.setText(tValue);
这是iam保存文本值
的地方 count++;
coins.setText(String.valueOf(count));
SharedPreferences sp = getSharedPreferences("key", 0);
SharedPreferences.Editor sedt = sp.edit();
sedt.putString("textvalue", coins.getText().toString());
sedt.commit();
答案 0 :(得分:0)
问题将通过这一行解决。试试吧
TextView coins = (TextView) findViewById(R.id.yourcoinsid);
coins.setText(""+tValue);
<强>原因强>
实例变量硬币为空,因此我们使用findViewById找到它然后它将起作用。