Android開発実践(四)Appのウェルカムインタフェース

2652 ワード

実現するロジックはこのようにして、まずAppを実行して歓迎ページに行って、歓迎ページで2時間以内に登録したことがあるかどうかを判断して、登録を検証する必要はありませんて、直接ホームページに着いて、ないで登録ページにジャンプします
このプロセスではSharedPreferencesが使用されます.
Welcomeのレイアウトページ:ウェルカム画像1枚
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:background="@drawable/mainpage"
    android:id="@+id/main">  
</RelativeLayout>

activity
import java.text.SimpleDateFormat;
import java.util.Date;

import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.os.Handler;
  
 
public class WelcomePage extends Activity {
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.welcome);
        //     ,         
        new Handler().postDelayed(r, 3000);
    }
 
    Runnable r = new Runnable() {
        @Override
        public void run() {
        	 
            SharedPreferences preferences=getSharedPreferences("user",MODE_PRIVATE);
            String Status=preferences.getString("Status", "0");
            Intent intent = new Intent();
            if(Status=="0"){
            	
             intent.setClass(WelcomePage.this, MainActivity.class);   //     
          
            }else{
            	Method method=	new Method();
            	//Date dafultDate=new Date("1900-1-1");
             boolean  isLogin=method.DateCompare(preferences.getString("LastDate", "1900-1-1 00:00:00"));
               
                 if(!isLogin){ 
            		  intent.setClass(WelcomePage.this, MainActivity.class);   //     
         		}else{
         			 //      
         		     SimpleDateFormat formatter=new SimpleDateFormat ("yyyy-MM-dd HH:mm:ss");
         			 Date  curDate=new Date(System.currentTimeMillis());
         		     String  strDate= formatter.format(curDate); 
         			 Editor editor=preferences.edit(); 
         			 editor.putString("LastDate", strDate);
                     editor.commit();
                     
         			 intent.setClass(WelcomePage.this, TextWebWiew.class);  //   
         		} 
            } 
            startActivity(intent);
            finish();
        }
    };
 
}