Sha256: 736ccba26d01c2ad4bff53ce993d2ce5d4beddd3bf1dafde3bb66800fa2f5f8a

Contents?: true

Size: 1.41 KB

Versions: 10

Compression:

Stored size: 1.41 KB

Contents

package org.ruboto;

import android.content.Context;
import android.content.Intent;
import android.os.Bundle;

/**
 * This Activity acts as an entry point to the app.  It must initialize the
 * JRuby runtime before restarting its life cycle.  While JRuby is initializing,
 * a progress dialog is shown.  If R.layout.splash is defined, by adding a
 * res/layout/splash.xml file, this layout is displayed instead of the progress
 * dialog.
 */
public class EntryPointActivity extends org.ruboto.RubotoActivity {

    public void onCreate(Bundle bundle) {
        Log.d("EntryPointActivity onCreate:");

        if (JRubyAdapter.isInitialized()) {
            getScriptInfo().setRubyClassName(getClass().getSimpleName());
        } else {
            showSplash();
            finish();
        }

        super.onCreate(bundle);
    }

    private void showSplash() {
        Intent splashIntent = new Intent(this, SplashActivity.class);
        splashIntent.putExtra(Intent.EXTRA_INTENT, futureIntent());
        startActivity(splashIntent);
    }
    
    // The Intent to to call when done. Defaults to calling this Activity again.
    // Override to change.
    protected Intent futureIntent() {
        if (getIntent().getAction() == null || !getIntent().getAction().equals(Intent.ACTION_VIEW)) {
            return new Intent(getIntent()).setAction(Intent.ACTION_VIEW);
        } else {
            return getIntent();
        }
    }
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ruboto-1.6.1 assets/src/org/ruboto/EntryPointActivity.java
ruboto-1.6.0 assets/src/org/ruboto/EntryPointActivity.java
ruboto-1.5.0 assets/src/org/ruboto/EntryPointActivity.java
ruboto-1.4.1 assets/src/org/ruboto/EntryPointActivity.java
ruboto-1.4.0 assets/src/org/ruboto/EntryPointActivity.java
ruboto-1.3.1 assets/src/org/ruboto/EntryPointActivity.java
ruboto-1.3.0 assets/src/org/ruboto/EntryPointActivity.java
ruboto-1.2.0 assets/src/org/ruboto/EntryPointActivity.java
ruboto-1.1.2 assets/src/org/ruboto/EntryPointActivity.java
ruboto-1.1.1 assets/src/org/ruboto/EntryPointActivity.java