Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android中設置只是程序第一次運行才顯示的界面

Android中設置只是程序第一次運行才顯示的界面

編輯:Android開發教程

程序安裝後第一次啟動:

啟動頁-->功能介紹頁-->系統主頁

以後啟動:

啟動頁-->系統 主頁

所以在啟動頁中判斷一下就可以了

可以弄一個文件保存一個狀態,推薦用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();
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved