概述
package com.example.fujilun_2; import android.app.Activity; import android.content.Intent; import android.content.SharedPreferences; import android.os.Bundle; public class LaunchActivity extends Activity{ //要保存的文件名 private final String SHARE_APP_TAG= "firstOpen"; private Boolean first; private SharedPreferences setting; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.activity_launch); setting = getSharedPreferences(SHARE_APP_TAG, 0); first = setting.getBoolean("FIRST",true); new Thread(new Runnable() { @Override public void run() { try { Thread.sleep(3000); } catch (InterruptedException e) { e.printStackTrace(); } if(first){ setting.edit().putBoolean("FIRST", false).commit(); Intent intent=new Intent(LaunchActivity.this,DemoActivity.class); startActivity(intent); finish(); }else{ Intent intent=new Intent(LaunchActivity.this,LoginActivity.class); startActivity(intent); finish(); } } }).start(); } }
最后
以上就是热心黑米为你收集整理的判断用户是否是第一次打开该app的全部内容,希望文章能够帮你解决判断用户是否是第一次打开该app所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复