<?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"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center_horizontal">
<com.google.android.cameraview.CameraView
android:id="@+id/cv_camera"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="20dp"
android:layout_weight="1"
app:autoFocus="true">
</com.google.android.cameraview.CameraView>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:src="@drawable/logo"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:text="人脸识别系统"
android:textColor="@android:color/black"
android:textSize="32sp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:id="@+id/current_time"
android:textColor="@android:color/black"
android:textSize="20sp"
android:text="2019年10月18日 星期五 16:51"/>
</LinearLayout>
<ImageView
android:id="@+id/iv_preview"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_gravity="bottom|left"
android:visibility="gone"/>
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:id="@+id/led_switch"
android:layout_marginTop="20dp"
android:layout_marginRight="20dp"
android:src="@drawable/led_bg"
android:layout_alignParentRight="true"/>
</RelativeLayout>
|