程序安装后第一次启动:
启动页-->功能介绍页-->系统主页
以后启动:
启动页-->系统 主页
所以在启动页中判断一下就可以了
可以弄一个文件保存一个状态,推荐用SharedPreferences 。
1.可以定义一个变量来判断程序是第几次运行,如果是第一次则跳转到引导的Activity,如果不是 第一次则执行系统主页。
判断系统是第一次运行的代码实现如下:
在Activity中添加代码:
使用SharedPreferences来记录程序的使用次数
一下是实现的代码:
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); preferences = getSharedPreferences("count",MODE_WORLD_READABLE); int count = preferences.getInt("count", 0); //判断程序与第几次运行,如果是第一次运行则跳转到引导页面 if (count == 0) { Intent intent = new Intent(); intent.setClass(getApplicationContext(),LaunchGuideViewActivity.class); startActivity(intent); this.finish(); } Editor editor = preferences.edit(); //存入数据 editor.putInt("count", ++count); //提交修改 editor.commit();
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索程序
, 系统
, activity跳转效果
, 运行
, 代码
, count
, intent跳转
, Android页面跳转
, android引导页实现
, Preferences
, activity跳转到
, android界面跳转
, 启动页实现
第一次运行
android程序启动界面、android 无界面程序、程序运行后不显示界面、程序运行 看不到界面、程序运行不显示界面,以便于您获取更多的相关知识。