|
JOAL v2.6.0-rc-20250712
JOAL, OpenAL® API Binding for Java (public API).
|
Public Member Functions | |
| String | getAction () |
Returns the default LauncherUtil#LAUNCH_ACTIVITY_NORMAL action. More... | |
| final OrderedProperties | getProperties () |
| Returns the properties, which are being propagated to the target activity. More... | |
| final ArrayList< String > | getArguments () |
| Returns the commandline arguments, which are being propagated to the target activity. More... | |
| void | init () |
| Custom initialization hook which can be overriden to setup data, e.g. More... | |
| boolean | finishAfterDelegate () |
| Returns true if this launcher activity shall end after starting the downstream activity. More... | |
| abstract String | getActivityName () |
| Must return the downstream Activity class name. More... | |
| abstract List< String > | getUsrPackages () |
| Must return a list of required user packages, at least one containing the activity. More... | |
| abstract List< String > | getSysPackages () |
| Return a list of required system packages w/ native libraries, may return null or a zero sized list. More... | |
| void | onCreate (final Bundle savedInstanceState) |
Definition at line 74 of file LauncherUtil.java.
| boolean com.jogamp.openal.test.android.LauncherUtil.BaseActivityLauncher.finishAfterDelegate | ( | ) |
Returns true if this launcher activity shall end after starting the downstream activity.
Defaults to true, override to change behavior.
Definition at line 105 of file LauncherUtil.java.
| String com.jogamp.openal.test.android.LauncherUtil.BaseActivityLauncher.getAction | ( | ) |
Returns the default LauncherUtil#LAUNCH_ACTIVITY_NORMAL action.
Should be overridden for other action, eg. LauncherUtil#LAUNCH_ACTIVITY_TRANSPARENT.
Definition at line 83 of file LauncherUtil.java.
|
abstract |
Must return the downstream Activity class name.
Reimplemented in com.jogamp.openal.test.android.OpenALTestActivityLauncher.
| final ArrayList< String > com.jogamp.openal.test.android.LauncherUtil.BaseActivityLauncher.getArguments | ( | ) |
Returns the commandline arguments, which are being propagated to the target activity.
Maybe be used to set custom commandline arguments.
Definition at line 99 of file LauncherUtil.java.
| final OrderedProperties com.jogamp.openal.test.android.LauncherUtil.BaseActivityLauncher.getProperties | ( | ) |
Returns the properties, which are being propagated to the target activity.
Maybe be used to set custom properties.
Definition at line 91 of file LauncherUtil.java.
|
abstract |
Return a list of required system packages w/ native libraries, may return null or a zero sized list.
Reimplemented in com.jogamp.openal.test.android.OpenALTestActivityLauncher.
|
abstract |
Must return a list of required user packages, at least one containing the activity.
Reimplemented in com.jogamp.openal.test.android.OpenALTestActivityLauncher.
| void com.jogamp.openal.test.android.LauncherUtil.BaseActivityLauncher.init | ( | ) |
Custom initialization hook which can be overriden to setup data, e.g.
fill the properties retrieved by getProperties().
Reimplemented in com.jogamp.openal.test.android.OpenALTestActivityLauncher.
Definition at line 102 of file LauncherUtil.java.
| void com.jogamp.openal.test.android.LauncherUtil.BaseActivityLauncher.onCreate | ( | final Bundle | savedInstanceState | ) |