Android :: Frame Layout For Two Video View Simultaneously
Sep 7, 2009
Hi all, I am trying to implement Picture in Picture. I used a Frame layout for two Video View and tried playing the video files. But it doesn't work. Does anyone have an idea of this PiP (Picture in Picture) concept?
View 2 Replies
Dec 18, 2009
I would prefer to not have to purchase a Flip Video Recorder to provide me the frame by frame playback needed (coaching girls softball) for instant instruction at practice. Is there an app that provides playback of video at a frame by frame rate?
View 1 Replies
View Related
Nov 3, 2010
I have some questions about android development. I have googled around, but cannot seem to find any answers to my questions.
- Is it possible to display google maps in a widget?
- Is it possible to run (and view) two apps simultaneously?
- Is it possible to run an App within an App?
View 1 Replies
View Related
Aug 26, 2010
Been stuck on this for a while and tried a few various things.Basically I've overridden frame layout to create myself a custom button. The frame layout has two children a button and a linearlayout with items in it.The problem is I'm trying to the get the button to stretch to the size of the frame layout (i.e. fill parent) and it isn't doing.
View 1 Replies
View Related
Oct 4, 2010
Record Video and Stream on Tv Simultaneously?
View 1 Replies
View Related
Feb 11, 2009
How to get the first frame of a video file ? Are there such APIs in OPENCORE?
View 13 Replies
View Related
Jan 18, 2010
Getting the first frame of a video file taken with the camera?
View 3 Replies
View Related
Jul 15, 2010
Is it possible to capture a frame from a video in android and save it or use it in any way in the application?
View 1 Replies
View Related
Sep 11, 2009
I am making an video application. In the list of the media, I would like to show the video frame as thumbnail to indicate my video.
There is standard method to extract the first frame from the video. However, I would like to let the user to use any frame as the thumbnail. Is there any method such that I can extract a frame by specific time input by user?
View 3 Replies
View Related
Aug 5, 2009
I am not able to use MediaPlayer/VideoView to make rtsp to work in Android. So I have created a client to interact with RTSP server, I have succeeded in doing this.I am able to get the video/audio frame from RTSP server (MySpace) in Android. Now I want to play the frames. I have searched OpenCore APIs to play the frames, but didn't get any APIs. My investigation: There is a class PlayerDriver.c It creates two sinks one audio and other video. handleSetVideoSurface handleSetAudioSink Two objects of type PVPlayerDataSinkPVMFNode are created. I suspect this class has a way to give the stream as input, but I am not getting the definition of this class. Can you suggest me is there any class I need to look into it?
View 1 Replies
View Related
Nov 24, 2010
I wanted to write an application that makes use of the camera taking extremely slow frame-rate video and uploading it. Right now I am reading over this:
http://itp.nyu.edu/~sve204/mobilemedia_spring10/androidCamera101.pdf
My question was in regards to the camera's use. The above article makes use of a canvas to preview the image, if one didn't want to preview the image before taking it could that be done? Is it necessary to use a preview of the camera image or can I just call takepicture to take the picture and catch the resulting callback to save it to a file?
View 3 Replies
View Related
Jan 23, 2009
Is it possible to build a GridView object in XML with 3 columns and 4 rows of Image buttons? It doesn't seem to have similar containment relationship like LinearLayout or RelativeLayout viewgroups.
I want to do this entirely in an xml layout file. When I put ImageButton xml tags inside a GridView xml body, The layout panel in eclipse is throwing an exception: UnsupportedOperationException:addView(View, LayoutParams) is not supported in AdapterView.
View 2 Replies
View Related
Aug 5, 2010
On a Nexus One (for example), the camera application is able to capture H.264 video at 720x480 (the "High" quality setting). However, when using the MediaRecorder API, it always seems to capture at a fixed frame size of 320x240.
I would expect the setVideoSize() method to control the frame size (as in the prepare fragment below), but it appears to have no effect (using Froyo 2.2 Android SDK).code...
Discussions on the android developers list seem to indicate this is a long standing issue. Can anyone advise how the frame size can be controlled, or if it is possible at all with the current API?
View 2 Replies
View Related
Feb 18, 2010
I've created an application that show around 250 images in ImageView. Images are loaded one after another, 15-30 images per second. Basically the whole thing gives an illusion of a rotating 3D object, at least it should.
The problem is next, app hangs when loading certain images(i.e. I see a few seconds of fluid animation and then animation hangs, jump 10-15 frames(images) ahead and continues. It always happens at the same places in animation cycle.
I though that Android might not have enough resources to handle something like this, so I've resized images to half their size, but it did't help. I've tried buffering images but that did't help either(actually, maybe a little, I think that animation looks a little bit smoother).
And now the weirdest thing. I use the touch screen to allow users to "rotate" the 3D object on those images, and while rotating I again experience those hangs at exactly the same places as with the animation.
All images are in .png format and their size vary from 15kB to 40kB.
I use the following code for the animation:
CODE:.....................
View 1 Replies
View Related
Aug 17, 2010
I want to build my own custom view which should look like the Crysis-GUI.At first I designed a XML-based Layout and made it visible via the setContentView(int resid)-Method. Worked pretty well.But now I wan't to go a step further and draw in my Layout. So I created a new Class, let it extend View and overrode the onDraw()-Method. So far so good.But how can I still use my XML-Layout? I can't do setContentView anymore, so how could the same effect be achieved?
View 1 Replies
View Related
Mar 10, 2010
So my layout looks basically like this:
<ScrollView>
<RelativeLayout>
<BunchOfViews/>
<ImageView android:layout_alignParentBottom="true"/>
</RelativeLayout>
</ScrollView>
I have the ScrollView so all of the layout always is visible no matter the height of the screen. The problem is that on a very high screen, I still want my imageview to be at the bottom. However, a child of a ScrollView dont seem to have a defined bottom. The View is placed at the top of the layout. How can I solve this problem in a neat way?
View 4 Replies
View Related
Oct 8, 2010
I have an XML layout with some custom tabs, a heading, and a ProgressBar(main.xml). I wish to add another XML layout(home.xml) to the main.xml layout, as i wish to keep main.xml re-usable for other activity's layouts and simply add things to it as necessary.The problem: after inflating R.layout.home into rootLayout, it seems as though the ProgressBar contained in rootLayout is hidden underneath the content of home.xml.Is there a way to tell certain views(via XML) to float above other views when the layout is constructed in this way?if not, am i forced to use methods such as progressBar.bringToFront() to raise targeted views to the top?what alternatives do i have in z-ordering views when some layouts are constructed using inflation?
View 2 Replies
View Related
Mar 11, 2010
I've tried to add a TextView before a ListView in a LinearLayout. The result is that the ListView wont show at all. The same thing happens if I put the TextView after the ListView, but then I will only see the ListView. Is there a way to get a text view above the ListView without to much of a hassle?
View 10 Replies
View Related
Nov 21, 2010
I am using a flipper in my main xml file to view multiple layouts in my app. For instance, if something = 1, the user is shown one version of the flipper, where if something = 2 the user sees a different version. Is there a way I can view the layout of the xml file for the other flippers I have rather than the main one? Ie, is there a way to switch views of each state of the flipper in eclipse?
View 1 Replies
View Related
May 19, 2012
I'm trying to build a live wallpaper using frames. I can't find any good tutorials on how to even build a live wallpaper. When I run app from eclipse i get these errors.
[2012-05-19 22:26:32 - LiveWallpaper] No Launcher activity found!
[2012-05-19 22:26:32 - LiveWallpaper] The launch will only sync the application package on the device!
It does install to the emulator. It all seems to work. I go in to the live wallpaper menu, find my live wallpaper in there open it, it loads. but its not moving through the frames. It only shows the last frame. I set it as wallpaper. It also doesn't do anything. Also would like to center the images.
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.service.wallpaper.WallpaperService;
import android.view.SurfaceHolder;
[code]...
View 3 Replies
View Related
Jun 14, 2010
I've only had my EVO for 4 days now but I can't open any videos sent to me via messaging. My husband has an Instict and sent me a 20 second video of our daughter and when I tried to open it, I got a photo that said "Video too large to view on this device". The video is not that large so I'm not sure what's up.Is there anyone else that is having this problem? Does anyone know how to fix it? We send videos of our kids all the time and I hate to think that I can't do that with a "state of the art" phone.
View 12 Replies
View Related
May 22, 2010
I cannot view facebook video from my Desir.
View 1 Replies
View Related
Apr 20, 2009
In my code, I only changed the layout params of an image after it is shown. For example, change the height of the layout. I called the invalidate() function after the change, but it does not work. Although the height of the layoutparams changed, but the view does not change. Why?
View 2 Replies
View Related
Mar 3, 2009
I want to re-use 1 adapter (similar to well known ImageAdapter from samples) with 2 different views - Gallery and GridView. I need to specify LayoutParams for the each View returned by getView() method of my adapter. In case of Gallery it should be instance of Gallery.LayoutParams, and in case of GridView it should be GridView.LayoutParams. I'll get an exception for sure if I'll try Gallery.LayoutParams with GridView and vice versa.What is the best way to do that? Can I somehow use "parent" parameter (ViewGroup parent) for that?
View 2 Replies
View Related
Feb 25, 2010
I have a layout defined in XML. I would like to inflate this RelativeView with other XML layout file. I may use different layouts depending on a situation. How should I do it?
View 3 Replies
View Related
Nov 28, 2009
Currently, I am creating a custom View class (DrawView) that inherits the View class and adding to my activity programatically by using RelativeLayout and LaoutParams etc. But is there an easier way to do this by adding my DrawView to the layout XML file?
View 4 Replies
View Related
Jun 23, 2009
I've created a custom view via .xml file, and I wanted to add it as a a contentView to an alert Dialog usinf a dialogBuilder:
CODE:.................
The problem is...I can't get my view from my custom layout... I only have an id (int)...
I tried Resource.getLayout(int) => it returns an xmlParser... not very usefull ...
finally the solution I comes up is so disgusting ( it worked but ... let's have a look)
CODE:.......
How can I do that easily without using such a disgusting way... ?
View 2 Replies
View Related
Mar 9, 2010
I am trying to do is to embed a custom view in the default layout main.xml:
CODE:......
As you can see the class is called com.lam.customview.CustomDisplayView, with the id of custom_display_view1. now in the com.lam.customview.CustomDisplayView class, i want to use another layout called custom_display_view.xml because i don't want to programmatically create controls/widgets.
Custom_display_view.xml is just a button and an image, the content of which i want to change based on certain conditions:
CODE:..............
I tried to do:
1)
CODE:........
But got this error, "03-08 20:33:15.711: ERROR/onCreate(10879): Binary XML file line #8: Error inflating class java.lang.reflect.Constructor ".
2)
CODE:..........
But got this error, "03-08 20:28:47.401: ERROR/CustomDisplayView(10806): Resource ID #0x7f050002 type #0x12 is not valid "
Also, if i do it this way, as someone has suggested, it's not clear to me how the custom_display_view.xml is associated with the custom view class.
View 2 Replies
View Related
Jul 15, 2010
I've created my own view by creating a subclass of the SurfaceView class.
However I can't figure out how to add it from the xml layout file.
My current main.xml looks like this:
CODE:............
What have I missed?
My view looks like this
CODE:..............
And it works fine like this:
CODE:..................
But nothing happens when trying to use it from the xml.
View 1 Replies
View Related
Sep 16, 2010
I am beginning developing android application. What I need to know is how to associated a xml layout file with a new class (not the activity). For example the class needs to have a table with an image and some texts.
View 1 Replies
View Related