1<?xml version="1.0" encoding="utf-8"?> 2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:fitsSystemWindows="true" 4 android:orientation="vertical" android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 android:keepScreenOn="true"> 7 <view 8 android:layout_width="match_parent" 9 android:layout_height="match_parent" 10 class="com.android.cts.verifier.sensors.RVCVCameraPreview" 11 android:id="@+id/cam_preview" 12 android:layout_centerVertical="true" 13 android:layout_centerHorizontal="true" /> 14 15 <!-- 16 <ImageView 17 android:layout_width="match_parent" 18 android:layout_height="match_parent" 19 android:layout_centerVertical="true" 20 android:id="@+id/cam_overlay" 21 android:src="@drawable/icon" 22 android:scaleType="fitStart" 23 /> 24 --> 25 <view 26 android:layout_width="match_parent" 27 android:layout_height="match_parent" 28 class="com.android.cts.verifier.sensors.MotionIndicatorView" 29 android:id="@+id/cam_indicator" 30 android:layout_centerVertical="true" 31 android:layout_centerHorizontal="true" /> 32 33 <ImageView 34 android:layout_width="wrap_content" 35 android:layout_height="wrap_content" 36 android:layout_centerInParent="true" 37 android:id="@+id/cam_overlay" 38 android:scaleType="fitStart" 39 /> 40</RelativeLayout>