android 自定义照相机

本文介绍了如何在Android中创建一个自定义相机应用,通过调用系统相机并保存拍摄的照片到手机。开发者参考了某个博客并增加了项目特定的功能,实现了一个简单的相机界面布局,包括一个1:1比例的视图,并提供了照片的文件路径返回。
摘要由CSDN通过智能技术生成

做了一个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
评论 12
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值