2

アプリケーション起動後に1回だけ表示される画面を作成したいのですが。その後、メイン画面のみが表示されます。私がこれを実装した方法は、設定を確認し、フラグに基づいて現在のレイアウトを設定することでした。この方法で実装することの欠点はありますか?もっと良い方法はありますか?

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        //Here is the main layout
        setContentView(R.layout.main);      

        mPrefs = PreferenceManager.getDefaultSharedPreferences(this);

        // second argument is the default to use if the preference can't be found
        Boolean welcomeScreenShown = mPrefs.getBoolean(welcomeScreenShownPref, false);

        if (!welcomeScreenShown) {
            //Here I set the one-time layout
            setContentView(R.layout.popup_message);             
            SharedPreferences.Editor editor = mPrefs.edit();
            editor.putBoolean(welcomeScreenShownPref, true);
            editor.commit(); // Very important to save the preference
        }
    }
4

2 に答える 2

1

共有設定の代わりに、以下のコードを使用できます。また、これを何度も使用しましたが、完全に機能します。アプリケーションが初めて起動したときに1回だけ表示されます

public class SplashActivity extends Activity {
protected boolean _isActive = true;
protected int _splashTime = 3000; //SplashActivity will be visible for 2s
final String TAG = "SplashActivity";


public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.splash_activity);



    //a separate thread to manage splash screen
    final Thread splashThread = new Thread() {

        public void run() {

            try {
                int wait = 0;

                while (_isActive && (_splashTime > wait)) { //will show only on the first time
                    sleep(100);

                    if (_isActive) {
                        wait += 100;
                    }
                }
            } catch (InterruptedException e) {
                Log.d(TAG, e.getMessage());

            } finally {
                startActivity(new Intent(SplashActivity.this, MainActivityAbs.class));
                finish();
            }
        }
    };
    splashThread.start();
}

//if a user clicks on a back btnOrder, do not show splash screen

public boolean onTouchEvent(MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_DOWN) {
        _isActive = false;
    }
    return true;
}
于 2012-09-13T04:26:19.777 に答える