diff options
author | Sven Gothel <[email protected]> | 2012-04-03 18:57:28 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-04-03 18:57:28 +0200 |
commit | 081404e20ac6055244408c6a4a7e7c2089183983 (patch) | |
tree | c59876c7fb976af6acccf0e3c3c279633c24e2cf /make/resources/android | |
parent | c594cf1dc9f37dd1a6d861a1aa5426abbd082d60 (diff) |
Add Android API 14 GLMediaPlayer demo: MovieSimple
Activity adds 2 NEWT GLWindow's in a ViewGroup,
one main view and one small HUD view.
Both GLWindow contain one GLEventListener playing the same stream using GLMediaPlayer
one with no effect, one w/ a gradient color effect.
The stream's URL is currently hardcoded 'file:///mnt/sdcard/Movies/BigBuckBunny_320x180.mp4'.
Upper half of main window:
- click start/pause video
- drag rotate video
Lower half of main window:
- drag bwd/fwd in the stream (seek)
Diffstat (limited to 'make/resources/android')
-rw-r--r-- | make/resources/android/AndroidManifest-test.xml | 10 | ||||
-rw-r--r-- | make/resources/android/res-test/values/strings.xml | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/make/resources/android/AndroidManifest-test.xml b/make/resources/android/AndroidManifest-test.xml index ca3089098..84256f6f4 100644 --- a/make/resources/android/AndroidManifest-test.xml +++ b/make/resources/android/AndroidManifest-test.xml @@ -95,6 +95,16 @@ <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> + <activity android:name="com.jogamp.opengl.test.android.MovieSimpleActivityLauncher" + android:label="@string/activity_moviesimple_name" + android:description="@string/activity_moviesimple_descr" + android:theme="@android:style/Theme.NoDisplay" + > + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> </application> </manifest> diff --git a/make/resources/android/res-test/values/strings.xml b/make/resources/android/res-test/values/strings.xml index d66f6e4d7..ea366a9f9 100644 --- a/make/resources/android/res-test/values/strings.xml +++ b/make/resources/android/res-test/values/strings.xml @@ -19,4 +19,6 @@ <string name="activity_graphui2p_descr">GraphUI 2-pass</string> <string name="activity_elektro_name">Elektro</string> <string name="activity_elektro_descr">Elektro</string> + <string name="activity_moviesimple_name">MovieSimple</string> + <string name="activity_moviesimple_descr">MovieSimple</string> </resources> |