程式安裝後第一次啟動:
啟動頁-->功能介紹頁-->系統首頁
以後啟動:
啟動頁-->系統首頁
所以在啟動頁中判斷一下就可以了
可以弄一個檔案儲存一個狀態,推薦用SharedPreferences。
1.可以定義一個變數來判斷程式是第幾次運行,如果是第一次則跳轉到引導的Activity,如果不是第一次則執行系統首頁。
判斷系統是第一次啟動並執行代碼實現如下:
在Activity中添加代碼:
使用SharedPreferences來記錄程式的使用次數
一下是實現的代碼:
[java]
<SPAN style="FONT-SIZE: 18px"><STRONG>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();</STRONG></SPAN>
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();