안드로이드 앱 자바(java) 기본형 카메라
기본형 카메라 예시 코드입니다. res/layout/activity_main.xml < ? xml version = "1.0" encoding = "utf-8" ? > < RelativeLayout xmlns : android = "http://schemas.android.com/apk/res/android" android : layout_width = "match_parent" android : layout_height = "match_parent" > < SurfaceView android : id = "@+id/surfaceView" android : layout_width = "match_parent" android : layout_height = "match_parent" / > < Button android : id = "@+id/captureButton" android : layout_width = "wrap_content" android : layout_height = "wrap_content" android : layout_centerHorizontal = "true" android : layout_alignParentBottom = "true" android : text = "사진 찍기" / > < / RelativeLayout > MainActivity.java import android . app . Activity ; import and...