The surfaceholder tag has no wiki summary.
0
votes
1answer
19 views
(SurfaceHolder.Callback) surfaceCreated never called
I am developing an Android game engine using a SurfaceView to draw Bitmaps on, with a similar framework to LunarLander. My main game engine activity sets up the layout such that it should display a ...
0
votes
0answers
16 views
Captured image gets distorted when saved - Android Surfaceholder HTC Desire S
I'm using the Surfaceholder and the camera to capture an image but when I do it on my HTC Desire S the captured image looks like this. This is not what it looks like in the preview-view.
It works ...
0
votes
0answers
30 views
Trying to show video in android livewallpaper
I'm trying to develop a simple live wallpaper for android that shows a video and then loop it when it is finished
So far I've been able (following some tutorials) to have a live wallpaper with drawn ...
0
votes
2answers
68 views
Why is my android activity being stopped?
I have inherited some code from an application that I need to modify (yuck). The activity in question implements SurfaceHolder.Callback and SensorEventListener. This activity is for a custom Camera.
...
0
votes
0answers
35 views
Displaying custom bitmaps processed from camera preview
I'd like to grab frames from the camera, process them and display them as bitmaps on a SurfaceView:
mCamera.setPreviewDisplay(mSurfaceView.getHolder());
// [...] do image processing on raw camera ...
0
votes
0answers
30 views
Camera View is getting displayed in surface holder
I am trying to display camera view in the surface holder. It displays a black screen with no camera view. I added all permissions in Manifest file.
This is my code,
public class MainActivity ...
0
votes
0answers
26 views
is it okay to implement surfaceholder.callback to a class that extends view in android?
i already did it and it works, i just dont get it why surfaceChanged, surfaceCreated, surfaceDestroyed neccessary to implement. what are this methods (sorry i cant understand javadocs if you'll ...
0
votes
0answers
58 views
Android -camera preview not working if started on click event
I want to build an Android app that displays the preview of the camera in a SurfaceView. It works fine when I execute all of the code in the oncreate method. Here is my code:
preview = ...
-1
votes
2answers
119 views
Get RGB from a SurfaceView displaying Live camera
I am displaying a live camera in SurfaceView using camera.startPreview();. Any idea on how I can get live RGB readings from the camera?
Thanks
0
votes
1answer
38 views
Understanding SurfaceHolder concept
I want to write a program that a ball move on screen, because of this, i read many tutorial and i cant understand this line:
mHolder = getHolder();
mHolder.addCallback(this);
what is "this" ...
0
votes
0answers
91 views
Android SurfaceHolder reused
I am trying to reuse SurfaceView for two different MediaPlayers. With my current approach:
I can see first video playing on the surface
after "Play2" button is clicked, I can see sencond video ...
0
votes
0answers
106 views
Android - Camera SurfaceView Not Updating After Pause Event
I am trying to add a camera preview in my app. When the app is minimized and then selected again the camera preview functions correctly. When I lock the device then unlock it again the camera ...
1
vote
2answers
148 views
Android Surface class Surface.ROTATION_ cannot be resolved or is not a field
I'm trying to fix my camera app. When i hold the camera in landscape mode, it previews on the screen sideways.
I found this fix on stack : Android - Camera preview is sideways
In my CameraSurfaceView ...
3
votes
1answer
202 views
Failed to take picture using auto-focus
I have searched some solutions with my problem and sure there are many related issues regarding it but nothing solves my concern.
I am receiving a runtime exception : takepicture ...
1
vote
0answers
150 views
android SurfaceHolder.lockCanvas returns null
I have been trying to do a Draw in an Observer callback and I always get a null return when I try to lock the canvas. The SurfaceHolder seems OK. I added a SurfaceHolder callback and it gets called ...
0
votes
3answers
47 views
How to fix this SuperNotCalledException in my code?
I have a problem with my game. Everytime the player dies, a screen appears where one can press "Try Again?". However when he presses this button the game crashes and android says the game was ...
0
votes
0answers
30 views
SurficeView Callbacks - Not called
Im working on my first native app. Im not sure why these callbacks are not created, or at least the surfaceCreated callback?
public class MainActivity extends Activity implements ...
0
votes
0answers
76 views
Android Front Camera IO Exception on Surface Holder
I am creating an app which uses front camera to capture users picture.
The problem I am facing is that when I use the camera on a surfaceView
inside a dialog, I am unable to capture photo and it ...
0
votes
1answer
126 views
Android Camera - Half of the screen is black in Portrait mode
I was trying to create camera app, but I have faced this issue : when using camera in landscape mode everything is OK, but using in portrait with setDisplayOrientation(90) method brings up this issue:
...
0
votes
1answer
157 views
getSurfaceHolder().getSurfaceFrame() reurning Rectangle with zero height and width
I am working on a basic live wallpaper. The code is working fine on my "Galaxy S2(GT-I9100) running ICS" and the function is returning correct height and width value.
But when I tried to run the same ...
0
votes
0answers
71 views
Android CameraPreview: Captured Pictures Have Green Color
public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
int width=0, height=0, PreviewFormat=0;
try {
mParameters = mCamera.getParameters();
...
0
votes
0answers
126 views
Render bitmap over Android camera
I use the following code to do some processing with native code over data[] fetched from camera :
private Camera.PreviewCallback previewCallback = new Camera.PreviewCallback() {
public void ...
1
vote
0answers
135 views
Thread is to be running if surfaceDestroyed() is called when home button is pressed
I am new to android Surfaceview implementation. I am developing RDP client application in android3.0. I getting the image stream from socket, drawing this image to surface using Surfaceview and ...
0
votes
1answer
153 views
How to draw faster? SurfaceView, SurfaceHolder dirty rect
I have a problem with SurfaceView.
Function DrawWave is call by a timer Interval 5ms, BUT actually it needs more than 30ms between two calls, (I tried delete drawColor, drawPath).
I tried as "Mode ...
0
votes
1answer
351 views
SurfaceHolder.lockCanvas() returns null
I'm trying to create a canvas and draw a bitmap to it using the following code:
Paint paint = new Paint();
InputStream is = assets.open("card_art" + File.separator + "texture.png");
Bitmap bitmap = ...
2
votes
2answers
981 views
java.io.IOException: setDataSource failed.: status=0x80000000
I am tying to play url using media player in activity using :
mediaPlayer = MediaPlayer.create(getApplicationContext(),
Uri.parse("http://www.pocketjourney.com/downloads/pj/video/famous.3gp"),
...
0
votes
0answers
117 views
RDP application in android
I am developing RDP client application in android 3.0. I get the input stream from server to update the image.
At server side :
The total screen is divided into 4 frames, server program sends the ...
0
votes
1answer
400 views
Render Byte Array on SurfaceView of android
Hi I have a raw dump of image which i store as byte array i have to display this on surface view. I tried to convert this byte array into a mutable bitmap and render on the canvas of ...
0
votes
0answers
99 views
Rendering Camera in a Circular SurfaceView
I have archieved how to render my camera in a surfaceView with fixed dimensions(in the default rectangular shape),but that one is easy; I want to do the same on a circular surfaceView.
Here is the ...
0
votes
1answer
198 views
Creating GameLoop in Android
I am creating an application related to GameLoop in this application if the user clicks the screen an image is drawn on the screen and it moves on the screen with a random speed and also in the random ...
1
vote
1answer
228 views
SurfaceView + Canvas, fade from one color to another
I have
ArrayList<ColorDrawable> colors = new ArrayList<ColorDrawable>();
for(int i = 0; i = intList.size(); i++){ //some list of ints
colors.add(new ColorDrawable(intList.get(i)));
...
1
vote
0answers
1k views
How to build a custom camera recorder app?
I am trying to develop a custom camera video recorder. When my devices execute the start MediaRecorder method in beginRecording() in the Activity, the app crashes. I don't know what is wrong, because ...
4
votes
2answers
2k views
Android Camera - app passed NULL surface
Whenever I run the cam_thread I get the error "app passed NULL surface". This code supposedly works on the HTC Incredible 1. I've reconfigured it slightly to run on a droid x. However I still get this ...
0
votes
1answer
1k views
Change size of Android custom SurfaceView
I'm trying to create a 2D game engine for an Android app. I've followed this tutorial, which works fine for creating a full screen display, but I don't want that. I want to make my view take the top ...
1
vote
2answers
634 views
Android : holder.getSurface() always return null
My view is a bunch of normal widget and a surfaceview. I don't know why after I get surfaceholder of SurfaceView and use getSurface() again on holder, I will always return null.
Here is my example ...
0
votes
1answer
742 views
Android : surfaceView cannot getHolder() in onCreate(), must in onResume()
In my activity, I has some views and a surfaceView.
Here is my first code in onCreate()
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
upBtn = ...
0
votes
0answers
290 views
onActivityResult when using SurfaceView with getHolder().addCallback on Android
When I write a class extends Activity implements SurfaceHolder.Callback
and when I add the following:
surfaceView.getHolder().addCallback(this);
The onActivityResult will not be called (checked by ...
0
votes
0answers
53 views
Error when trying to add multible random variables to canvas. Android
I can add one get random variable Y0 = new Random().nextInt(Max - Min + 1) + dMin; to the AnimationThread(SurfaceHolder surfaceHolder), but when I try another variable Y1 = new Random().nextInt(Max1 ...
1
vote
2answers
827 views
Inconsistent dimensions when surfaceView callback calls surfaceChanged in Android
I am using a SurfaceView to draw to a part of the screen, whereby I update the drawing with a background thread. The surfaceview implements a SurfaceView.callback.
On the onDraw method I am using ...
2
votes
1answer
722 views
Wallpaper crashes with error - queueBuffer: error queuing buffer to SurfaceTexture
Live Wallpaper crashes, code below
public void render(){
Canvas canvas = null;
try{
canvas = this._surfaceHolder.lockCanvas(null);
synchronized (this._surfaceHolder) {
...
0
votes
1answer
2k views
SurfaceView: dequeueBuffer failed on Android 4.0
I'm building a live wallpaper, it has a bitmap with fullHD resolution which is scaled down to the size of the users phone screen. It works perfectly on Android 2.2 and 2.3 but crashes on 4.0.
EDIT :
...
0
votes
2answers
916 views
android Surface View with XML Layout and add buttons to a Canvas
so i made a Surface view with a canvas, so i could do some graphics. is there any way of having a xml layout with a canvas, so i can have buttons and what not on the screen, or is there any other ...
2
votes
1answer
275 views
Occasional Stutter/Lag in game loop from lockCanvas method
I am smooth scrolling a bitmap at a given speed. I'm doing this with a game loop.
It scrolls pretty smoothly, around 60 fps, except for occasional stutters / jumps. These jumps occur anywhere from ...
1
vote
1answer
240 views
Is It about Augmented Reality or Camera Preview?
I jsu have small inquiry, and please dont underestimate it.
I Have a class that implements Render, and another CLass implements Surface.callback.
When I run the class the implements the ...
0
votes
1answer
263 views
display CameraPreview and Custom Views inside a SurfaceView
I run into following Problem:
I'm currently displaying a CameraPreview on a SurfaceView using its SurfaceHolder as described here Camera Dev Guide. So its mentioned that I have to set the Type of my ...
0
votes
1answer
166 views
Draw text on SurfaceHolder
I am doing an application witch uses the webcam and i want to display some text after the picture is taken so in the method ShutterCallBack i wrote this
ShutterCallback shutterCallback = new ...
0
votes
1answer
424 views
SurfaceView drawing failure
I am trying an example having SurfaceView. I have inherited my class from SurfaceView and using as follows:
public class MySurfaceView extends SurfaceView implements SurfaceHolder.Callback {
...
0
votes
1answer
210 views
“Error 1” occurring during camera overlay in Android
I have created an Activity that has a SurfaceView and a SurfaceHolder in order to create a Camera overlay. For some reason, I am getting the following in ADB: 04-08 10:54:06.747: E/Camera(1152): ...
-1
votes
2answers
823 views
Android Camera Orientation
I'm trying to learn an Augmented Reality basic from this article :
http://www.devx.com/wireless/Article/42482/0/page/2
when it run, the camera took an opposite orientation.
My question is how to ...
0
votes
0answers
289 views
NullPointerException when saving the path of an image taken by a picture
I have a class named "Run", it extends Activity ad implements "SurfaceHolder.callback".
I'm trying to take a picture from the cameraPreview and save the path of the taken picture using MediaStore. ...



