在tabhost中预览android cam

时间:2011-04-11 19:13:21

标签: android camera preview android-tabhost

我的Android应用程序中有一个TabHost,我想在我的一个标签中预览我的相机。

由于

1 个答案:

答案 0 :(得分:0)

在子Activity中使用SurfaceHolder,就像在普通活动中一样(很多关于它的示例),然后以经典方式在选项卡中插入此活动:

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));