标签:
非常多时候我们须要检測用户是不是第一次打开应用,从而初始化一些数据,或者打开引导界面等等。
/*方法一: * 首次打开的时候获取isFirstIn值,默认值为false * 获得false,证明不是第一次打开 * 获得true,证明是第一次打开;然后把isFirstIn值设为false * */ SharedPreferences sp = getSharedPreferences("isFirstIn", Activity.MODE_PRIVATE); boolean isFirstIn = sp.getBoolean("isFirstInWith1.4", true); if(isFirstIn) { SharedPreferences.Editor editor = sp.edit(); editor.putBoolean("isFirstInWith1.4", false); editor.commit(); new AlertDialog.Builder(this).setMessage("这是第一次打开").show(); } else { new AlertDialog.Builder(this).setMessage("你打开了n次了").show(); }
所以我们在每个版本号检測的key中增加版本号号,如上面的isFirstInWith1.4,当中1.4就是版本号号。
/*方法二: * 在首次打开的时候检查是否存在文件(com.example.test.isFirstIn) * 假设已存在,证明不是第一次打开 * 不存在,证明是第一次打开;打开之后创建文件 * */ File dir = getFilesDir();// /data/data/com.example.test/files File f = new File(dir, "com.example.test.isFirstIn"); Log.e("miquan", f.getAbsolutePath()); if(f.exists()) { //dosomething new AlertDialog.Builder(this).setMessage("你打开了n次了").show(); } else { try { f.createNewFile(); } catch (IOException e) { e.printStackTrace(); } //dosomething new AlertDialog.Builder(this).setMessage("这是第一次打开").show(); }
标签:
原文地址:http://www.cnblogs.com/mengfanrong/p/4232148.html