Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a TabHost in my Android application and I want to preview my camera IN one of my tabs.

Thanks

share|improve this question
1  
That's great. What's the question? – Zsombor ErdÅ‘dy-Nagy Apr 11 '11 at 19:15
I can't realise it, I'm benneginer in this domain. – winczu Apr 11 '11 at 20:13

1 Answer

Use a SurfaceHolder in the sub Activity like you would do in a normal activity (lot of example about it) then insert this activity in a tab in the classical way:

intent = new Intent(this, PreviewActivity.class);
        tabHost.addTab(tabHost
                .newTabSpec("previewtab")
                .setIndicator(getText(R.string.tab_item_preview),
                        getResources().getDrawable(R.drawable.icon_preview))
                .setContent(intent));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.