/***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
Why am i cannot understand your mean?
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.
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.
http://www.sneakerslike.com
http://www.uggkissyou.com
http://www.bayuggboots.com
I like this article about<b><a http://www.adidasvipshop.com
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!
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.
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.
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.
Thanks for your sharing, good job!
Such a good article, caught my sympathy!
Nice post!I agree with you!
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.
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>
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 .
It was a very nice idea!
Thank you for your sharing.
I am searching this very long time...
http://www.mbtsandal.com
Hhe let-nostalgic article's content rich variety which make us move for our mood after reading
this article.
good post thank you
wow,good
I have a look at your article and learn frome some usefule information.
Thank you for taking the time to write this blog post.
looks very indepth indeed
http://www.supramenshoes.com/ supra footwear
http://www.af1dunksb.com/ air force 1
http://www.asicskicsk.com/ Asics Onitsuka Tiger
[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 Healthy Shoes, sandals, casual shoes. Our site offers quality products, quality assurance. Been issued new, so stay tuned.
http://wendysreplica.co
I loved the editorial.It is very interesting.Thank you for the information.
I am always searching online for articles that can help me get further ahead. Thanks a million!
Thanks for this! I’ve been looking all over the internet for it.
Great thanks for sharing this article post.
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,
<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>
I hope you will keep updating your content constantly as you have one dedicated reader here.
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/
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.
You are the few people who wrote something about that, I like it.
Your post is great, I have some common ideas with you.
Oh man, thank you for writing this.
That's good.
I need to retweet this to my twitter.
Excellent piece.
It's my first time to post a reply, thanks for your sharing.
You are my hero. This...yes. Yesyesyesyes.
I have never read something like this.
Great stuff!
I have never read something like this.
I am really interested in this topic.
Is it real or not?
I have never read something like this.
Great stuff!
I am really interested in this topic.
Is it real or not?
Great stuff!
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.
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?
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!
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!
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 :)
You are the few people who wrote something about that, I like it.
Your post is great, I have some common ideas with you.
Wonderful and informative post about "Camera Capturing".
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>
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
Nice blog,Thanks!
Add a Comment