我希望我的应用程序有一个活动,显示如何使用该应用程序的说明。但是,这个“指令”屏幕只能在安装后显示一次,你是怎么做到的?
答案 0 :(得分:16)
您可以在应用程序firstRun
中设置一个特殊标志(我们称之为SharedPreferences
)。如果没有,则是第一次运行,因此请根据说明显示您的活动/弹出/其他内容,然后在首选项中设置firstRun
。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
SharedPreferences settings = getSharedPreferences("prefs", 0);
boolean firstRun = settings.getBoolean("firstRun", true);
if ( firstRun )
{
// here run your first-time instructions, for example :
startActivityForResult(
new Intent(context, InstructionsActivity.class),
INSTRUCTIONS_CODE);
}
}
// when your InstructionsActivity ends, do not forget to set the firstRun boolean
protected void onActivityResult(int requestCode, int resultCode,
Intent data) {
if (requestCode == INSTRUCTIONS_CODE) {
SharedPreferences settings = getSharedPreferences("prefs", 0);
SharedPreferences.Editor editor = settings.edit();
editor.putBoolean("firstRun", false);
editor.commit();
}
}
答案 1 :(得分:1)
是的,您可以使用SharedPreferences
解决此问题SharedPreferences pref;
SharedPreferences.Editor editor;
pref = getSharedPreferences("firstrun", MODE_PRIVATE);
editor = pref.edit();
editor.putString("chkRegi","true");
editor.commit();
然后检查String chkRegi ture或false