More test plugins and nicer scrolling effect
authorXavi Artigas <xartigas@fluendo.com>
Tue, 4 Sep 2012 14:54:11 +0000 (16:54 +0200)
committerXavi Artigas <xartigas@fluendo.com>
Tue, 4 Sep 2012 14:54:11 +0000 (16:54 +0200)
gst-sdk/tutorials/android-tutorial-1/jni/Android.mk
gst-sdk/tutorials/android-tutorial-1/src/com/gst_sdk_tutorials/tutorial_1/Tutorial1.java

index a485b8a..3646087 100755 (executable)
@@ -22,7 +22,7 @@ LOCAL_LDLIBS := -L./ -lgstreamer_android
 LOCAL_CFLAGS := $(shell pkg-config gstreamer-0.10 --cflags)
 include $(BUILD_SHARED_LIBRARY)
 
-GSTREAMER_PLUGINS = vorbis coreelements audiotestsrc videotestsrc ogg theora
+GSTREAMER_PLUGINS = coreelements audiotestsrc videotestsrc ogg theora vorbis ffmpegcolorspace playback
 GSTREAMER_STATIC_PLUGINS_PATH=/home/fluendo/cerbero/dist/android_arm/lib/gstreamer-0.10/static
 GSTREAMER_MK_PATH=/home/fluendo/cerbero/data/ndk-build/
 include $(GSTREAMER_MK_PATH)/gstreamer.mk
index 8dedd22..5afe4cc 100755 (executable)
@@ -36,6 +36,8 @@ public class Tutorial1 extends Activity
          */
         TextView  tv = new TextView(this);
         tv.setMovementMethod(new ScrollingMovementMethod());
+        tv.setClickable (false);
+        tv.setLongClickable (false);
         tv.setText( gstVersion() );
         setContentView(tv);
     }