[android-beginners] Voice Recognition

2009-12-28 Thread Valentino XM
Hi All, Has anyone been working with voice recognition, I would like to build an app that responds to various commands that will iniate apps from via a website -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging

[android-beginners] Newbees Revolt!! Part Du...

2009-12-25 Thread Valentino XM
Right As Rain..and it never gets old.. Sometimes one has to slip on the pavement and break a leg , inorder to get the right signs put up.. It was not my intention to berate the efforts of Google, and it does seem that some are more passionate about Google than others. but nevertheless some valid

[android-beginners] Newbees Revolt., Android Info Sucks

2009-12-24 Thread Valentino XM
I dont know about any other newbies out there, but I one, have come to the consensus that the information on Android is ambigous at best and completely un hepful in the least. The information is dated in consistient, mind boggleling and over indulgent with madeup technical words. Sure we all

[android-beginners] Re: Creating SetContentView

2009-12-24 Thread Valentino XM
Hi, thanks for your help.. trying this now.. On Dec 23, 3:53 pm, Nithin nithin.war...@gmail.com wrote: Create a xml named video_player in resource folder On Dec 23, 4:24 pm, Valentino XM shourai...@gmail.com wrote: I am trying to change setContentView(R.layout.main) to setContentView

[android-beginners] Creating SetContentView

2009-12-23 Thread Valentino XM
I am trying to change setContentView(R.layout.main) to setContentView (R.layout.video_player) but this change does not actually change or occur in the Java file. Java public static final class layout { public static final int main=0x7f03; should a new widget (video_player) be

[android-beginners] layouts, Widgets, MediaPlayer and Video Player

2009-12-21 Thread Valentino XM
Hi I am attemting to setContentView r.layout.video a switch from main however no matter how many things i try .. it does not seem possible to make this switch. Also if one is trying to import widgets, MediaPlayer or VideoPlayer, into java from Android. why are there no working widgets in

[android-beginners] Streaming Video using VideoView and youtube Sorry Cant play this video

2009-12-20 Thread Valentino XM
Is there anyone streaming video successfullly from youtube. I have tried for two weeks to get this going.. no answers no help, no nothing.. nothing on the web worthwhile. all kinds of strings, that lead to nothing.. anyone can point me in the right direction TIA Cheers -- You received this

[android-beginners] Cannot stream youtube for playback through emulator.. coding isssues..

2009-12-19 Thread Valentino XM
Hi All i have tried mixing and matching code from several listed sources on the development page. but cannot stream video from youtube using the emulator. package info.shouraig.com; import java.io.IOException; import android.app.Activity; import android.media.MediaPlayer; import

[android-beginners] Video playback youtube, code sequence..

2009-12-19 Thread Valentino XM
Hi All, could you a little help wih code for streaming youtub 3gp, video . TIA package org.shouraig.com; import java.io.IOException; import android.app.Activity; import android.media.MediaPlayer; import android.net.Uri; import android.os.Bundle; import android.util.Log; import

[android-beginners] Does ANYONE HAVE ANY IDEA WHY THIS CODE WILL NOT PLLAY VIDEO..Video From Youtube in Emulator Android 2.1 Eclipse Gallileo/ Unable to play video

2009-12-16 Thread Valentino XM
package info.shouraig.com; import java.io.IOException; import android.app.Activity; import android.media.MediaPlayer; import android.os.Bundle; import android.util.Log; import android.widget.VideoView; public class XSO9 extends Activity{ private static final String HTTP =

[android-beginners] Streaming Video using VideoView Sorry Cant play this video

2009-12-15 Thread Valentino XM
this is the code. appreciate if anyone can tell me whats wrong. package info.shouraig.com; import java.io.IOException; import android.app.Activity; import android.media.MediaPlayer; import android.net.Uri; import android.os.Bundle; import android.util.Log; import android.widget.MediaController;

[android-beginners] Playing a Video from file

2009-12-13 Thread Valentino XM
Help! code code code, playing a video from file.. using the video view widget. not at all successful. the developers page claims this is easy.. i beg to differ... for first time coders, very frutstrating.. if you can help., please do. package info.shouraig.com; import android.app.Activity;

[android-beginners] Play Video from file?

2009-12-13 Thread Valentino XM
little help, please... simply would like to insert video into the VideoView widget, using mp4 located on my local HD. I am stuck in what should be fairly straight forward. (according to the developers page) never written any code before now., jumpin in at the D.E. at this for 3 straight

[android-beginners] Video From Youtube in Emulator Android 2.1 Eclipse Gallileo/ Unable to play video

2009-12-13 Thread Valentino XM
Hi! having no luck with playback of video from source file, i thought id try video from youtube... Emulator says it cannot play video.. So now what?.. can anyone tell me aoubt this code below. TIA. cheers package info.shouraig.com; import android.app.Activity; import android.net.Uri; import

[android-beginners] Audio/Video Code samples?

2009-12-10 Thread Valentino XM
Hi All, I am trying to code Audio/Video into my existiing project for the first time. Following the directive from the Android Devlopers page, Playing from a File or Stream You can play back media files from the filesystem or a web URL: 1. Create an instance of the MediaPlayer using new

[android-beginners] When a MediaPlayer object is just created using new ? 3 part question

2009-12-10 Thread Valentino XM
Hi, I am trying my 1st audio/video coding, and i am stuck at the gate: 3 part question... Ref: from the Android Developers page on Audio/Video (When a MediaPlayer object is just created using new) Me: (New?) e.g; New file, folder, project, .?? Pt.II MediaPlayer mp =