ご教示頂けないでしょうか。
ビルドターゲットはAndroid 4.0.3になります。
package com.example.camerasample2;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
setContentView(R.layout.test_main);
}
}
package com.example.camerasample2.view;
public class CameraPreview extends SurfaceView implements SurfaceHolder.Callback {
省略
}
■layout XML
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/frameLayoutMain"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res/com.example.camerasample2">
<com.example.camerasample2.view.CameraPreview
android:id="@+id/camera_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</FrameLayout>
コメント(0件)