做了一个dome,内容和功能都很简单,当练练手
部分代码参考了一个博客任何自己添加了一些项目的功能,具体那个博客忘记了,不好意思。
具体就是调用系统的摄相机拍照保存到手机,以后返回相片的文件地址
效果图:
照相界面的布局文件:
<SurfaceView
android:id="@+id/surfaceView"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<!-- 相对布局,放置两个按钮 -->
<RelativeLayout
android:id="@+id/buttonLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="visible" >
<FrameLayout
android:id="@+id/fra_shade_top"
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_alignParentTop="true"
android:background="#000000" />
<FrameLayout
android:id="@+id/fra_shade_bottom"
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_alignParentBottom="true"
android:background="#000000" />
<TableLayout
android:id="@+id/table1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:padding="4dip"
android:stretchColumns="*" >
<TableRow>
<Button
android:id="@+id/bnt_enter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确认" />
<Button
android:id="@+id/bnt_takepicture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="拍照" />
<Button
android:id="@+id/bnt_cancel"
android:layout_width="w