Tagged Questions
The surfaceview tag has no wiki summary.
29
votes
5answers
21k views
How to have a transparent ImageButton: Android
<ImageButton android:id="@+id/previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/media_skip_backward"
...
18
votes
1answer
8k views
Android: Error inflating class
I'm new to Android development and I've been having an issue that I haven't been able to fix. I'm mostly using code from examples provided in the SDK so I'm not sure what's happening here. I'm simply ...
14
votes
4answers
11k views
Overlay images onto Camera preview SurfaceView
I have a SurfaceView that is being used to draw images, and I would like to overlay them onto a live-feed from the phone's camera.
Currently, the SurfaceView that contains the images have a ...
12
votes
2answers
838 views
lockCanvas() really slow
Testing my game on a slower device (Orange San Francisco aka ZTE Blade) and I have been getting an appalling frame rate.
I put some debug code into the draw loop and discovered the following line is ...
10
votes
2answers
2k views
Weird performance issue with Galaxy Tab
I am working on a 2d tutorial and was able to test my current tutorial part on a Samsung Galaxy Tab.
The tutorial simply moves the default icon randomly over the screen. With a tap I create a new ...
7
votes
3answers
1k views
Is OpenGL on Android a battery killer?
I'm currently implementing a software keyboard ( using some sophisticated prediction ), and drawing it using canvas is insufficient in terms of perfomance. I'm getting frame drawing times well above ...
6
votes
3answers
9k views
How to set Android camera orientation properly?
I want to set the camera orientation according to the device orientation in Android but nothing seems to be working. I tried to rotate the Surface as well as the camera parameters but the camera ...
6
votes
2answers
4k views
Programming with SurfaceView and thread strategy for game development
I am using a SurfaceView and a rendering thread to develop a game based on structure like LunarLander.
However, I faced many problems, and here I want to point them all out. I wish anyone who want ...
5
votes
1answer
151 views
How to resize a bitmap eficiently and with out losing quality in android
I have a bitmap of the size 320x480 and i need to stretch it on different device screens, i tried using this:
Rect dstRect = new Rect();
canvas.getClipBounds(dstRect);
canvas.drawBitmap(frameBuffer, ...
5
votes
2answers
338 views
Why is lockCanvas() slow?
I'm implementing a SurfaceView subclass, where I run a separate thread to draw onto a SurfaceHolders Canvas.
I'm measuring time before and after call to lockCanvas(), and I'm getting from about 70ms ...
5
votes
3answers
3k views
how to make surfaceview transparent
Hello all i want to make my DrawingSurface view transparent. i tried many thing but it's not working.
Here is my xml code to make my surface view transparent
<?xml version="1.0" ...
5
votes
2answers
6k views
Android SurfaceView scrolling
I'm writing an android application that builds an offscreen bitmap that is (say) 640*480 pixels and displays that in a SurfaceView. Note that the size of the image is larger than the actual display ...
4
votes
2answers
228 views
Low FPS with android SurfaceView
I have some trubles with my framerate using a SurfaceView. Im doing the tipical stuff i found in some tutorials (all of them said the same), but i cant reach a decent framerate on my samsung galaxy S ...
4
votes
1answer
417 views
Android: camera view - app crashes when I don't use a deprecated method
In my app, I am trying to set up the camera. My class extends SurfaceView and implements the SurfaceHolder.Callback methods.
Here is some of my class:
public class CameraPreview extends SurfaceView ...
4
votes
1answer
402 views
how can using shared preferences string values in surface view class in Android
i am implementing one game application in this application i am using shared preferences in preferences Activity
spinnerTheme.setOnItemSelectedListener(new OnItemSelectedListener(){
...
4
votes
1answer
582 views
Initializing SurfaceView with a Drawable
I'd like to open up a SurfaceView with a icon placed in the center of the screen when an application is first started. I'm evoking icon creation using an implementation of SurfaceHolder.Callback to ...
4
votes
2answers
15k views
How to draw an overlay on a SurfaceView used by Camera on Android?
I have a simple program that draws the preview of the Camera into a SurfaceView. What I'm trying to do is using the onPreviewFrame method, which is invoked each time a new frame is drawn into the ...
4
votes
4answers
10k views
surfaceview + glsurfaceview + framelayout
I'm new at this (java and opengl) so please bear with me if the
answer to the question is simple. :)
I'm trying to get a camera preview screen with the ability to
display 3d objects simultaneously. ...
4
votes
2answers
3k views
Android: Regaining focus using SurfaceView
I'm currently getting to grips with Android, playing around with the Lunar Lander sample.
I've found that if you navigate away from the app (eg, hit the call button) it will destroy the underlying ...
3
votes
2answers
138 views
Surface view as a bitmap in android
I'm using cocos2d.
Now I've added some images in the layer, and played around a bit.
I'm trying to save the whole screen as image file.
How can I do this?
3
votes
1answer
93 views
Animation with large number of bitmaps
I've seen similar threads here but couldn't find a sufficient solution yet.
I'm working on my first Android app and trying to create an animation using large amount of images/bitmaps. I have a list ...
3
votes
4answers
555 views
Restarting/Pausing Thread in onResume/onPause
I'm have a game that's uses SurfaceView implementation to display the objects.
I have a thread which draws the SurfaceView time-to-time to the screen.
The game is running completely.
Unfortunately, it ...
3
votes
2answers
492 views
Android: onDraw is too slow
I'm building a game using Android 2.2. The main game Activity uses a custom SurfaceView:
class GameView extends SurfaceView
From what I understand, the onDraw() method requires its own Thread to be ...
3
votes
1answer
594 views
programmatically adding SurfaceView to a FrameLayout which is Z-ordered under ImageView
EDIT 2a: feel free to jump to the bottom for succinct questions.
I can Draw a SurfaceView via xml. In my case, I am creating an e-book which will have different animations running on SurfaceViews ...
3
votes
1answer
545 views
Cam picture on surface holder, draw: Exception because of surface type
I'm using a SurfaceView with a SurfaceHolder to start off with a camera preview in my test app.
public class TextLocatorActivity extends Activity {
private Preview pvw;
@Override
...
3
votes
3answers
5k views
Android, canvas: How do I clear (delete contents of) a canvas (= bitmaps), living in a surfaceView?
I try to make a simple game.
I found (and put to use) a template that draws a canvas with bitmaps like this:
private void doDraw(Canvas canvas) {
for (int i=0;i<8;i++)
for (int ...
3
votes
0answers
412 views
Android playing video with the camera surfaceview in background
Hello
i have a surfaceview and a videview in a framlayout. if i start the video in oncreate, i see all perfectly, the video playing while the camera plays in background.
but if i start the video after ...
3
votes
1answer
455 views
example of opengl surface apps in android
i am developing one app using opengl surface view ,how can implemented please forward some example android apps using open gl surface
thanks in advance
narasimha
3
votes
1answer
430 views
Returning to SurfaceView after another Acitivity has taken focus
I'm working on an RPG for Android, using the LunarLander API demo. I've already made a game using this demo (Porcupine Assassin, check it out!) so I've got a good grasp of the Canvas class and things ...
3
votes
1answer
1k views
Layout with dynamic position
I have a layout which might be a bit unusual. The structure is the following:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
3
votes
1answer
2k views
Android OpenGL extending GLSurfaceView null pointer exceptions
I am trying to create a simple 3-D app for android that will have an additional view layered on top of the OpenGL view (much like the SurfaceViewOverlay example in the API demos). I'm running into an ...
3
votes
1answer
3k views
Android's EditText is hidden when the virtual keyboard is shown and a SurfaceView is involved
I have a simple user interface: an EditText should be located below a SurfaceView.
I use a RelativeLayout to arrange these two views.
Now, when I tap on the EditText to open the virtual keyboard the ...
3
votes
1answer
822 views
How to make a SurfaceView always horizontal?
I'm using SurfaceView to draw some stuff using canvas. The problem is that I want to show everything horizontally by default and keep it that way regardless the position of the device. I'm not using ...
2
votes
2answers
59 views
SlidingDrawer hidden by image in SurfaceView
I have both a SlidingDrawer and a custom SurfaceView that renders an image. I have just tried to drag the SlidingDrawer up and in doing so have discovered that it goes behind the image in the ...
2
votes
2answers
141 views
How to scroll off screen memory bitmap
Using below code to scroll
I have a Surfaceview thread and an off canvas texture bitmap that is being generated (changed), first row (line), every frame and then copied one position (line) down on ...
2
votes
4answers
172 views
SurfaceView flashes black on load
I have a drawing app that takes about 2-5 seconds to load the drawing for complicated drawings (done via an AsyncTask). For a better user experience, during this time I flash the stored PNG version of ...
2
votes
1answer
83 views
Communication between custom SurfaceView and default android's views
My problem is communication between custom GameView (extends SurfaceView) and TextView: I want to set TextView's text from inside of the GameView.
In main activity i'm using this layout file, it ...
2
votes
1answer
93 views
How should i handle resetting SurfaceView and Thread when my game should restart?
I'm new to both android and game development and have been trying to create a pong clone to get to grips with everything. I have a "PongView" class which extends SurfaceView and a "PongThread" which ...
2
votes
0answers
147 views
Scaling a Bitmap to fit in a canvas
Im trying to write a game on droid, the way i take care of different screen resolutions is i make a bitmap with a target resolution (320x480), make a canvas from it and draw all the elements on it ...
2
votes
0answers
50 views
Reopening camera after intent chooser is canceled
I have created a custom camera preview view CameraView which extends SurfaceView, and it also implements SurfaceHolder.Callback interface. The view operates with the camera. When you open the view it ...
2
votes
2answers
407 views
Android Surfaceview Threads and memory leaks
Im creating a game in android, and i noticed that the game has a memory leak. Iv managed to isolate the memory leak into a smaller application so that i can see well try and work out, how to fix it.
...
2
votes
2answers
168 views
Center MoPub baner on SurfaceView
I'd like add MoPub ad in my Android game. Game is created on SurfaceView Class. I have no xml layout file. The problem is that I can't center ad on screen. I try center and gravity everything. Still ...
2
votes
2answers
136 views
How to paste stuff over a camera preview on Android?
I am making the classic AR app for Android.
I am using a SurfaceView to show the camera.
I want to know, how I put things over it... Currently I am using widgets, but they have two issues:
First, ...
2
votes
0answers
566 views
How can I make a SurfaceView larger than the screen?
I would like to effectively make a simple digital zoom for the camera preview, so I thought I would simply resize my SurfaceView to be larger than the screen. Other questions (such as 3813049) seem ...
2
votes
2answers
555 views
Android: Admob integration
I'm trying to integrate an admob banner into my Android game. I have a somewhat special case as my game screen is handled by a custom class that extends SurfaceView. I implemented the code from this ...
2
votes
2answers
2k views
Android:How to add a button in surface view
I'm drawing some graphics and i would like to add a couple of buttons to it. But with the surface view how do we add these buttons programatically ?
2
votes
2answers
819 views
Fighting with SurfaceView, Camera and OpenGL
We've been fighting with some problems relating to SurfaceViews for more than a week, and find no proper solution to them. We read the other questions in the forum regarding to similar problems (and ...
2
votes
0answers
281 views
How to add a scrollbar to a custom SurfaceView of a virtual height
I have a SurfaceView which has a fixed height within the game (let's say it is always 400 pixels high). However, the content that I display within that SurfaceView is tile-based, so at any point ...
2
votes
1answer
567 views
How to make a class that extends SurfaceView start an Activity?
So I have a class that draws and does all the lifting in my game, which extends SurfaceView.
I want to start a new Activity that shows the score of the player after he dies.
The GameOver activity has ...
2
votes
1answer
2k views
Android: creating a Bitmap with SurfaceView content
I'm afraid to already have the unfortunate answer to this question but just in case... I'm using a SurfaceView to do some image processing with bitmaps (lights and colors modifications) and I would ...