public abstract class

BaseActivity

extends Activity
java.lang.Object
   ↳ android.content.Context
     ↳ android.content.ContextWrapper
       ↳ android.view.ContextThemeWrapper
         ↳ android.app.Activity
           ↳ org.andengine.ui.activity.BaseActivity
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

(c) 2010 Nicolas Gramlich (c) 2011 Zynga Inc.

Summary

Nested Classes
class BaseActivity.CancelledException  
[Expand]
Inherited Constants
From class android.app.Activity
From class android.content.Context
[Expand]
Inherited Fields
From class android.app.Activity
Public Constructors
BaseActivity()
Protected Methods
<T> void doAsync(int pTitleResourceID, int pMessageResourceID, AsyncCallable<T> pAsyncCallable, Callback<T> pCallback, Callback<Exception> pExceptionCallback)
Performs a task in the background, showing an indeterminate ProgressDialog, while the AsyncCallable is being processed.
<T> void doAsync(int pTitleResourceID, int pMessageResourceID, Callable<T> pCallable, Callback<T> pCallback, Callback<Exception> pExceptionCallback)
Performs a task in the background, showing a indeterminate ProgressDialog, while the Callable is being processed.
<T> void doAsync(int pTitleResourceID, int pMessageResourceID, Callable<T> pCallable, Callback<T> pCallback)
Performs a task in the background, showing a ProgressDialog, while the Callable is being processed.
<T> void doProgressAsync(int pTitleResourceID, int pIconResourceID, ProgressCallable<T> pCallable, Callback<T> pCallback)
Performs a task in the background, showing a ProgressDialog with an ProgressBar, while the AsyncCallable is being processed.
<T> void doProgressAsync(int pTitleResourceID, int pIconResourceID, ProgressCallable<T> pCallable, Callback<T> pCallback, Callback<Exception> pExceptionCallback)
Performs a task in the background, showing a ProgressDialog with a ProgressBar, while the AsyncCallable is being processed.
[Expand]
Inherited Methods
From class android.app.Activity
From class android.view.ContextThemeWrapper
From class android.content.ContextWrapper
From class android.content.Context
From class java.lang.Object
From interface android.content.ComponentCallbacks
From interface android.view.KeyEvent.Callback
From interface android.view.LayoutInflater.Factory
From interface android.view.View.OnCreateContextMenuListener
From interface android.view.Window.Callback

Public Constructors

public BaseActivity ()

Protected Methods

protected void doAsync (int pTitleResourceID, int pMessageResourceID, AsyncCallable<T> pAsyncCallable, Callback<T> pCallback, Callback<Exception> pExceptionCallback)

Performs a task in the background, showing an indeterminate ProgressDialog, while the AsyncCallable is being processed.

protected void doAsync (int pTitleResourceID, int pMessageResourceID, Callable<T> pCallable, Callback<T> pCallback, Callback<Exception> pExceptionCallback)

Performs a task in the background, showing a indeterminate ProgressDialog, while the Callable is being processed.

protected void doAsync (int pTitleResourceID, int pMessageResourceID, Callable<T> pCallable, Callback<T> pCallback)

Performs a task in the background, showing a ProgressDialog, while the Callable is being processed.

protected void doProgressAsync (int pTitleResourceID, int pIconResourceID, ProgressCallable<T> pCallable, Callback<T> pCallback)

Performs a task in the background, showing a ProgressDialog with an ProgressBar, while the AsyncCallable is being processed.

protected void doProgressAsync (int pTitleResourceID, int pIconResourceID, ProgressCallable<T> pCallable, Callback<T> pCallback, Callback<Exception> pExceptionCallback)

Performs a task in the background, showing a ProgressDialog with a ProgressBar, while the AsyncCallable is being processed.