博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android布局
阅读量:5240 次
发布时间:2019-06-14

本文共 2556 字,大约阅读时间需要 8 分钟。

1.使用帧布局自定义照相机

<?xml version="1.0" encoding="utf-8"?>

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:id="@+id/camera"

    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" />

 

    <!-- 头部取消、翻转、闪光灯 -->

    <RelativeLayout

        android:id="@+id/top"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:background="@drawable/photograph_top_bg" >

 

        <ImageView

            android:id="@+id/cancel"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_centerVertical="true"

            android:layout_marginLeft="3dp"

            android:src="@drawable/photograph_cancel" />

 

        <ImageView

            android:id="@+id/flip"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_centerInParent="true"

            android:src="@drawable/photograph_flip" />

 

        <ImageView

            android:id="@+id/spark_self"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_alignParentRight="true"

            android:layout_centerVertical="true"

            android:layout_marginRight="3dp"

            android:src="@drawable/photograph_spark_self" />

    </RelativeLayout>

 

    <!-- 整理照片 -->

    <LinearLayout

        android:id="@+id/photographs"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_gravity="bottom"

        android:background="@drawable/photograph_down_bg"

        android:orientation="horizontal" >

    </LinearLayout>

 

    <!-- 底部从相册选择、拍照、下一步 -->

    <RelativeLayout

        android:id="@+id/bottom"

        android:layout_width="wrap_content"

        android:layout_height="60dp"

        android:layout_gravity="bottom"

        android:background="@drawable/photograph_bottom_bg" >

 

        <ImageView

            android:id="@+id/pickphoto"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_centerVertical="true"

            android:layout_marginLeft="15dp"

            android:src="@drawable/photograph_pickphoto" />

 

        <ImageView

            android:id="@+id/takephoto"

            android:layout_width="60dp"

            android:layout_height="40dp"

            android:layout_centerInParent="true"

            android:src="@drawable/photograph_takephoto" />

 

        <TextView

            android:id="@+id/next"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:layout_alignParentRight="true"

            android:layout_centerVertical="true"

            android:paddingRight="10dp"

            android:text="下一步"

            android:textColor="#ffffff"

            android:textSize="18sp" />

    </RelativeLayout>

</FrameLayout>

效果图:

转载于:https://www.cnblogs.com/bianmajiang/p/3986696.html

你可能感兴趣的文章
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Springboot-日志框架
查看>>
P1192-台阶问题
查看>>
一、使用pip安装Python包
查看>>
spring与quartz整合
查看>>
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>
Duilib扩展《01》— 双击、右键消息扩展
查看>>
利用Fiddler拦截接口请求并篡改数据
查看>>
python习题:unittest参数化-数据从文件或excel中读取
查看>>
Android控件之GridView探究
查看>>