Hi all,

My app use camera function. I implemented it using the small code
below
Intent intentVideo = new Intent();
intentVideo.setType("video/*");
intentVideo.setAction(Intent.ACTION_VIEW);
intentVideo.setComponent(new ComponentName("com.android.camera",
"com.android.camera.MovieView"));
intentVideo.setData(Uri.parse(mFeedObjectList.get
(itemSelected).videoLink));
startActivity(intentVideo);

But running on A motorola dext I get an exception...normal
com.android.camera is replaced com.motorola.camera and MovieView by
Camcorder.

Ennoying ! Is it possible to call a camera viewer without call
specifically the class and package ? (it's to read a streaming video).

Best

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to