[android-developers] Re: Video with MediaRecorder

2009-08-19 Thread greatinnovus
Hi, Any suggestions please... On Aug 19, 4:06 pm, greatinnovus wrote: > Hi All, > >      Im tryingvideocapturewith device and ( recorder.prepare(); > causes error and closes my application.) Can any one suggest me where > im going wrong with this code. > > publi

[android-developers] Capture Video on device (Video Recording Problem)

2009-08-19 Thread greatinnovus
Hi All, Im trying video capture with device and ( recorder.prepare(); causes error and closes my application.) Can any one suggest me where im going wrong with this code. public class VideoCapture1 extends Activity { private MediaRecorder recorder; private SurfaceHolder hol

[android-developers] Re: Video with MediaRecorder

2009-08-19 Thread greatinnovus
Hi All, Im trying video capture with device and ( recorder.prepare(); causes error and closes my application.) Can any one suggest me where im going wrong with this code. public class VideoCapture1 extends Activity { private MediaRecorder recorder; private SurfaceHolder hol

[android-developers] Read data from WebView (WebKit) or Browser Intent

2009-08-18 Thread greatinnovus
Hi All, In my application im trying to load a external url through the browser intent using the code. Intent i = new Intent(Intent.ACTION_VIEW); Uri u = Uri.parse("http://xxx.com/";); i.setData(u); startActivity(i);