Camera capturing

/***Main View****/

package android.learning.camera;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.MenuItem;

public class CameraDemo extends Activity {
	
	private Preview preview = new Preview();
	
	
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
    
    public boolean onCreateOptionsMenu(android.view.Menu menu) {
        MenuItem item = menu.add(0, 0, 0, "Slikaj");
        item.setOnMenuItemClickListener(new MenuItem.OnMenuItemClickListener() {
            public boolean onMenuItemClick(MenuItem item) {
            	Intent intent = new Intent();
            	intent.setClass(getApplicationContext(), preview.getClass());
            	startActivity(intent);
            	return true;
            }
        });
        return true;
    }    
}

/****Camera callback**********/

package android.learning.camera;

import java.io.OutputStream;
import android.hardware.Camera;
import android.hardware.Camera.PictureCallback;

public class ImageCaptureCallback implements PictureCallback  {

	private OutputStream filoutputStream;
	
	public ImageCaptureCallback(OutputStream filoutputStream) {
		this.filoutputStream = filoutputStream;
	}
	
	public void onPictureTaken(byte[] data, Camera camera) {
		try {
			filoutputStream.write(data);
			filoutputStream.flush();
			filoutputStream.close();
		} catch(Exception ex) {
			ex.printStackTrace();
		}
	}
}

/****Preview class for showing preview of camera**********/

package android.learning.camera;

import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;

import android.app.Activity;
import android.content.ContentValues;
import android.graphics.PixelFormat;
import android.hardware.Camera;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore.Images.Media;
import android.util.Log;
import android.view.KeyEvent;
import android.view.SurfaceHolder;
import android.view.SurfaceView;

public class Preview extends Activity implements SurfaceHolder.Callback {

	private Camera camera;
    private boolean isPreviewRunning = false;
    private SimpleDateFormat timeStampFormat = new SimpleDateFormat("yyyyMMddHHmmssSS");
    private SurfaceView surfaceView;
    private SurfaceHolder surfaceHolder;
    
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        getWindow().setFormat(PixelFormat.TRANSLUCENT);
        setContentView(R.layout.preview);
        surfaceView = (SurfaceView)findViewById(R.id.surface);
        surfaceHolder = surfaceView.getHolder();
        surfaceHolder.addCallback(this);
        surfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
    }
			
	Camera.PictureCallback mPictureCallbackRaw = new Camera.PictureCallback() {
        public void onPictureTaken(byte[] data, Camera c) {
            camera.startPreview();
        }
    };
    

    Camera.ShutterCallback mShutterCallback = new Camera.ShutterCallback() {
    	public void onShutter() {
    		finish();
    	}
    };
    

    public boolean onKeyDown(int keyCode, KeyEvent event)
    {
    	ImageCaptureCallback camDemo = null;
    	if(keyCode == KeyEvent.KEYCODE_DPAD_CENTER) {
    	try {
    		String filename = timeStampFormat.format(new Date());
    		ContentValues values = new ContentValues();
    		values.put(Media.TITLE, filename);
    		values.put(Media.DESCRIPTION, "Image from Android Emulator");
    		Uri uri = getContentResolver().insert(Media.EXTERNAL_CONTENT_URI, values);
    		camDemo = new ImageCaptureCallback( getContentResolver().openOutputStream(uri));
    	} catch(Exception ex ){
    		}
    	}
        if (keyCode == KeyEvent.KEYCODE_BACK) {
            finish();
        	return super.onKeyDown(keyCode, event);
            
        }
         
        if (keyCode == KeyEvent.KEYCODE_DPAD_CENTER) {
            camera.takePicture(mShutterCallback, mPictureCallbackRaw, camDemo);
            return true;
        }
        

        return false;
    }

    protected void onResume()
    {
        Log.e(getClass().getSimpleName(), "onResume");
        super.onResume();
    }

    protected void onSaveInstanceState(Bundle outState)
    {
        super.onSaveInstanceState(outState);
    }

    protected void onStop()
    {
    	super.onStop();
    }   

	@Override
	public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
		if (isPreviewRunning) {
            camera.stopPreview();
        }
        Camera.Parameters p = camera.getParameters();
        p.setPreviewSize(width, height);
        camera.setParameters(p);
        try {
			camera.setPreviewDisplay(holder);
		} catch (IOException e) {
			e.printStackTrace();
		}
        camera.startPreview();
        isPreviewRunning = true;
		
	}

	@Override
	public void surfaceCreated(SurfaceHolder holder) {
		camera = Camera.open();
		
	}

	@Override
	public void surfaceDestroyed(SurfaceHolder holder) {
		camera.stopPreview();
        isPreviewRunning = false;
        camera.release();
		
	}
	
	protected void onRestoreInstanceState(Bundle savedInstanceState)
    {
        super.onRestoreInstanceState(savedInstanceState);
    }
	
}

/****Main window layout******/

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    />
    
</LinearLayout>

/****Preview window layout******/

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="vertical">
    <SurfaceView android:id="@+id/surface"
        android:layout_width="fill_parent" android:layout_height="10dip"
        android:layout_weight="1">
    </SurfaceView>
</LinearLayout>

57 Comments

#
ed hardy clothes - March 15, 2010 at 6:50 a.m.

Why am i cannot understand your mean?

#
John - March 30, 2010 at 5:12 a.m.

My camera preview is black? Any suggestions? I hear a clicking sound when it starts-up, but then it is black. I have a Droid.

#
Links of London Jewellery - May 4, 2010 at 5:01 p.m.

When we got out of the car at our house, the three children ran through the front door and straight to the toys that were spread out under our Christmas tree. One of the girls spied Jill’s doll and immediately hugged it to her breast. I remember that the little boy grabbed Sharon’s ball. And the other girl picked up something of mine. All this happened a long time ago, but the memory of it remains clear. That was the Christmas when my sisters and I learned the joy of making others happy.

#
bay ugg boots - May 6, 2010 at 8:42 a.m.

http://www.sneakerslike.com
http://www.uggkissyou.com
http://www.bayuggboots.com

#
adidas shoes sale - May 7, 2010 at 11:27 a.m.

I like this article about<b><a http://www.adidasvipshop.com

#
MBT Shoes Sale - May 10, 2010 at 3:18 a.m.

Thank you for introducing me the useful information.And .....Totally boring. can you tell me where is the red and gold colors...? I predict a very low seller....I look forward your answer.thank you!

#
cheap shox shoes - May 26, 2010 at 11:41 a.m.

I want to thank you from the core of my heart for doing such a research. Just now I completed reading your post and also find the tips to be useful. I will surely try to keep all those points in mind.

#
air jordan shoes - May 27, 2010 at 2:45 a.m.

Thanks for doing such a thorough research work. I must say all the tips you have mentioned here are useful. So, I have saved the page. Hope it will help me in my future endeavors.

#
supra shoes - May 27, 2010 at 3:49 a.m.

I want to thank you from the core of my heart for doing such a research. Just now I completed reading your post and also find the tips to be useful. I will surely try to keep all those points in mind.

#
gucci outlet - May 27, 2010 at 5:49 a.m.

Thanks for your sharing, good job!

#
replica handbags - May 30, 2010 at 6:42 a.m.

Such a good article, caught my sympathy!

#
cheap jordan shoes - June 1, 2010 at 10:24 a.m.

Nice post!I agree with you!

#
polo t shirts - June 2, 2010 at 12:17 p.m.

Thanks for doing such a thorough research work. I must say all the tips you have mentioned here are useful. So, I have saved the page. Hope it will help me in my future endeavors.

#
Polo T Shirts - June 4, 2010 at 9:58 a.m.

Thanks for providing some information for me,best service:
<a href="http://www.battery-stores.co.uk">Notebook Battery</a>
<a href="http://www.polocvs.com">Polo T Shirts</a>
<a href="http://www.mytiffanycvs.com">Tiffany Jewelry</a>
<a href="http://www.mychanelmall.com">Chanel Handbags</a>
<a href="http://www.mbtcvs.com">MBT Shoes</a>
<a href="http://www.ghdcvs.com">GHD Hair Straighteners</a>
<a href="http://www.fashional-styles.com">Fashion Styles</a>

<a href="http://www.bateryretail.co.uk">Laptop AC Adapters</a>

#
Cordless Drill Battery - June 4, 2010 at 10:08 a.m.

We are professional manufacture Of replacements for laptop battery,camcorder battery, digital camera battery, PDA battery,cordless drill battery,cell phone battery,battery charger,laptop AC adapter and laptop Auto(DC) adapters distributor & wholesaler .

#
wholesale nfl jerseys - June 12, 2010 at 3:46 a.m.

It was a very nice idea!

#
wholesale mlb jerseys - June 12, 2010 at 3:46 a.m.

Thank you for your sharing.

#
Breitling Watches - June 22, 2010 at 11:47 a.m.

I am searching this very long time...

#
http://www.mbtsandal.com - June 24, 2010 at 9:08 a.m.

http://www.mbtsandal.com

#
rosetta stone spanish - June 24, 2010 at 9:19 a.m.

Hhe let-nostalgic article's content rich variety which make us move for our mood after reading

this article.

#
gucci outlet - June 24, 2010 at 11:16 a.m.

good post thank you

#
vibram five fingers - June 28, 2010 at 4:49 a.m.

wow,good

#
adidas outlet - July 2, 2010 at 11:13 a.m.

I have a look at your article and learn frome some usefule information.

#
cheap christian louboutin shoes - July 3, 2010 at 10:58 a.m.

Thank you for taking the time to write this blog post.

#
daily sudoku - July 4, 2010 at 10:10 a.m.

looks very indepth indeed

#
nike dunk sb - July 6, 2010 at 12:20 p.m.

http://www.supramenshoes.com/ supra footwear
http://www.af1dunksb.com/ air force 1
http://www.asicskicsk.com/ Asics Onitsuka Tiger

#
air yeezy - July 7, 2010 at 10:03 a.m.

[url=http://www.airyeezyshoes.org/]Air yeezy[/url]
[url=http://www.airyeezyshoes.org/]Air yeezy shoes[/url]
[url=http://www.airyeezyshoes.org/]Nike air yeezy[/url]
[url=http://www.airyeezyshoes.org/]Cheap air yeezy[/url]
[url=http://www.airyeezyshoes.org/] Air yeezy sale[/url]

[url=http://www.airyeezyshoes.org/nike-air-yeezy-shoes-cheap-1.html]Air yeezy black pink[/url]
[url=http://www.airyeezyshoes.org/nike-air-yeezy-shoes-cheap-1.html]Air yeezy glow in the dark[/url]
[url=http://www.airyeezyshoes.org/nike-air-yeezy-shoes-cheap-1.html]Nike air yeezy shoes[/url]
[url=http://www.airyeezyshoes.org/nike-air-yeezy-shoes-cheap-1.html]Kanye west air yeezy[/url]
[url=http://www.airyeezyshoes.org/nike-air-yeezy-shoes-cheap-1.html]Cheap air yeezy shoes[/url]
[url=http://www.airyeezyshoes.org/nike-air-yeezy-shoes-cheap-1.html]Buy air yeezy shoes[/url]

[url=http://www.airyeezyshoes.org/adidas-jeremy-scott-cheap-5.html]adidas jeremy scott[/url]
[url=http://www.airyeezyshoes.org/adidas-jeremy-scott-cheap-5.html]adidas jeremy scott shoes[/url]
[url=http://www.airyeezyshoes.org/adidas-jeremy-scott-cheap-5.html]adidas jeremy scott wings[/url]
[url=http://www.airyeezyshoes.org/adidas-jeremy-scott-cheap-5.html]adidas jeremy scott 2010[/url]
[url=http://www.airyeezyshoes.org/adidas-jeremy-scott-cheap-5.html]adidas jeremy scott sneakers[/url]
[url=http://www.airyeezyshoes.org/adidas-jeremy-scott-cheap-5.html]cheap adidas jeremy scott[/url]
[url=http://www.airyeezyshoes.org/adidas-jeremy-scott-cheap-5.html]adidas jeremy scott wings shoes[/url]
[url=http://www.airyeezyshoes.org/adidas-jeremy-scott-cheap-5.html]jeremy scott[/url]
[url=http://www.airyeezyshoes.org/adidas-jeremy-scott-cheap-5.html]jeremy scott shoes[/url]
[url=http://www.airyeezyshoes.org/adidas-jeremy-scott-cheap-5.html]jeremy scott adidas shoes[/url]

[url=http://www.airyeezyshoes.org/louis-vuitton-shoes-cheap-4.html]louis vuitton[/url]
[url=http://www.airyeezyshoes.org/louis-vuitton-shoes-cheap-4.html]louis vuitton shoes[/url]

#
mbt shoes cheap - July 8, 2010 at 7:52 a.m.

MBT Healthy Shoes, sandals, casual shoes. Our site offers quality products, quality assurance. Been issued new, so stay tuned.

#
gucci bags - July 10, 2010 at 8:15 a.m.

http://wendysreplica.co

#
GHD straighteners - July 13, 2010 at 3:22 a.m.

I loved the editorial.It is very interesting.Thank you for the information.

#
NFL jerseys - July 13, 2010 at 3:23 a.m.

I am always searching online for articles that can help me get further ahead. Thanks a million!

#
MBTshoes - July 13, 2010 at 3:24 a.m.

Thanks for this! I’ve been looking all over the internet for it.

#
UGG boots - July 13, 2010 at 3:26 a.m.

Great thanks for sharing this article post.

#
louis vuitton bags - July 13, 2010 at 7:26 a.m.

Tucked away in our timberland for you subconscious is an idyllic vision. We see ourselves on a long trip that timberland 6 inch spans the continent. We are traveling by train. Out timberland hiking boots windows, we drink in the passing scene of cars on nearby highways, of children timberland shoe company waving at a crossing,

#
wendy's replica - July 15, 2010 at 10:19 a.m.

<a href=http://www.topchanelbag.com>chanel</a>
<a href=http://www.topguccibags.com>gucci</a>
<a href=http://www.greathermes.com>hermes</a>
<a href=http://www.greatlouisvuitton.com>louis vuitton</a>
<a href=http://www.topdesignerhandbag.com>designer handbags</a>
<a href=http://www.replicacell.com>vertu phones</a>
<a href=http://wendysreplica.com/blog>designer handbags reviews</a>
<a href=http://wendysreplica.com>wendy's replica</a>
<a href=http://www.replicacell.com>replica phones</a>
<a href=http://www.replicacell.com/vertu-replica.html>vertu replica</a>
<a href=http://www.replicacell.com/tag-heuer-phone.html>tag heuer phone</a>
<a href=http://www.replicacell.com/mobiado.html>mobiado</a>
<a href=http://www.replicacell.com/cartier-phones.html>cartier-phones</a>
<a href=http://www.replicacell.com/goldvish.html>goldvish</a>
<a href=http://www.replicacell.com/rolex-mobile.html>rolex mobile</a>
<a href=http://www.replicacell.com/porsche-phone.html>porsche phone</a>
<a href=http://www.replicacell.com/replica-blackberry.html>replica blackberry</a>
<a href=http://www.replicacell.com/iphone-replica.html>iphone replica</a>

#
Replica Watches - July 17, 2010 at 11:23 a.m.

I hope you will keep updating your content constantly as you have one dedicated reader here.

#
air max 95 black - July 20, 2010 at 4:24 a.m.

However mean your nike air max 2010 mens life is meet it and live it; Do not shun it and call it hard names. It is not so bad nike air max 2010 as you are. It looks poorest when you are richest. The nike max 2009 on sale faultfinder will find faults in paradise. Love your new nike air max 2009 life poor as it is. You may perhaps have some pleasant thrilling glorious air max 95 black hours even in a poorhouse. The setting sun is reflected from the blue airmax 95 windows of the alms-house as brightly as from the rich man's blue air max 90 for women abode; the snow melts before its door as early in the spring. I do not see but a quiet mind may nike air max 90 live as contentedly there and have as cheering cheap air max 180 thoughts as in a palace. The town's poor seem to me often to live the most independent air max classic womens shoes lives of any. May be they are simply great nike air max enough to receive without misgiving. Most think that they are above being supported by the town; but it often grey nike air max for men happens that they are not above supporting themselves by dishonest means. Which should be more disreputable. Cultivate poverty men air max shoes like a garden herb like sage. Do not trouble yourself much to get new things whether clothes or women air max shoes friends Turn the old return to them. Things do not change; we change. Sell your clothes and keep your thoughts. Today we have higher nike air max white buildings and wider highways but shorter temperaments and narrower points of nike red air max 2009 view. http://www.sellnikeairmax.com/

#
Modern hair stylers - July 20, 2010 at 10:36 a.m.

The dream of creating any modern hair style by yourself will come true by hair stylers from us.Good news is that we sell all of them at discount price and free shipping.So splendid to own one to make your life colorful.

#
black ugg boots - July 20, 2010 at 10:42 a.m.

You are the few people who wrote something about that, I like it.

Your post is great, I have some common ideas with you.

#
ugg shoes - July 20, 2010 at 10:44 a.m.

Oh man, thank you for writing this.

That's good.

#
ugg classic tall - July 20, 2010 at 10:46 a.m.

I need to retweet this to my twitter.

#
cheap ugg boots - July 20, 2010 at 10:48 a.m.

Excellent piece.

It's my first time to post a reply, thanks for your sharing.

You are my hero. This...yes. Yesyesyesyes.

#
fake uggs - July 20, 2010 at 10:50 a.m.

I have never read something like this.

Great stuff!

#
ugg bailey - July 20, 2010 at 10:51 a.m.

I have never read something like this.

#
genuine ugg boots - July 20, 2010 at 10:53 a.m.

I am really interested in this topic.

Is it real or not?

#
ugg boots - July 20, 2010 at 10:55 a.m.

I have never read something like this.

Great stuff!

I am really interested in this topic.

Is it real or not?

#
ugg boots sale - July 20, 2010 at 10:57 a.m.

Great stuff!

#
ugg cardy - July 20, 2010 at 11 a.m.

That's good.

I hope you don't mind me linking you so that this information spreads more.

it's good to know someone has an idea about what's going on.

Well done!

I have never read something like this.

Great stuff!

I am really interested in this topic.

Is it real or not?

Excellent piece.

It's my first time to post a reply, thanks for your sharing.

You are my hero. This...yes. Yesyesyesyes.

#
ugg classic tall - July 20, 2010 at 11:04 a.m.

Thanks for a great post. That was definitely what I was searched in past two days.

The account settings redesign looks interesting.
No sign of fixing voice posts though? Force that third party vendor into it if you must!

:(

how do i get out of this community?

BUT WOW @ The people not knowing who he is.... really?

#
ugg classic short - July 20, 2010 at 11:07 a.m.

I hope you don't mind me linking you so that this information spreads more.

it's good to know someone has an idea about what's going on.

Well done!

I have never read something like this.

Great stuff!

#
ugg store - July 20, 2010 at 11:09 a.m.

It's my first time to post a reply, thanks for your sharing.

You are my hero. This...yes. Yesyesyesyes.

Beautifully done, both the content and the format.

Definitely recommending this all around.

I love it!

last year, I wrote about the same thing.

could you write more about it?

Brilliantly put.

That makes sense.

excellent idea!

#
ugg boots women - July 20, 2010 at 11:11 a.m.

Wow, thank you for sharing this. I love seeing artist's work space. It's neat!

love it all <3!!!!

Yay! I'm so going again and again and again :)

#
black ugg boots - July 21, 2010 at 5:36 a.m.

You are the few people who wrote something about that, I like it.

Your post is great, I have some common ideas with you.

#
CCTV Products - July 21, 2010 at 6:01 a.m.

Wonderful and informative post about "Camera Capturing".

#
asics shoes - July 25, 2010 at 1:59 p.m.

welcome to come here to see the kinds of asics shoes, so you can buy tese cheap asics shoes online.hope you have a shopping here.
<a href="http://www.asics-shoes.biz">asics shoes</a>
<a href="http://www.asics-shoes.biz">asics running shoes</a>
<a href="http://www.asics-shoes.biz">asics gel</a>

#
7 jeans - July 28, 2010 at 7:04 a.m.

2010 fashion <a href="http://www.jeans7.com">7 jeans</a> are hot sales on jeans 7, such as ROBINS,TRUE, G-STAR jeans and so on. Jeans sold by us are of lowest price and high-quality!

2010 <a href="http://www.jeans7.com">fashion jeans</a> are hot sales on jeans 7

#
paul smith bag - July 28, 2010 at 11:25 a.m.

Nice blog,Thanks!

Add a Comment