2018-09-20 13:27:18 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-09-02 17:04:43 -03:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-09 13:29:04 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:viewBindingIgnore="true"
|
2021-09-02 17:04:43 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-09-20 13:27:18 -07:00
|
|
|
android:layout_width="match_parent"
|
2021-09-02 17:04:43 -03:00
|
|
|
android:layout_height="match_parent">
|
2018-09-20 13:27:18 -07:00
|
|
|
|
2023-03-08 14:55:19 -04:00
|
|
|
<com.google.android.material.card.MaterialCardView
|
2021-09-02 17:04:43 -03:00
|
|
|
android:id="@+id/camera_preview_parent"
|
2018-09-20 13:27:18 -07:00
|
|
|
android:layout_width="match_parent"
|
2021-09-02 17:04:43 -03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:cardCornerRadius="18dp"
|
|
|
|
app:cardElevation="0dp"
|
2022-09-07 14:55:39 -03:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent">
|
2021-09-02 17:04:43 -03:00
|
|
|
|
|
|
|
<TextureView
|
|
|
|
android:id="@+id/camera_preview"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2023-03-08 14:55:19 -04:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|
2018-09-20 13:27:18 -07:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/camera_controls_container"
|
|
|
|
android:layout_width="match_parent"
|
2021-09-02 17:04:43 -03:00
|
|
|
android:layout_height="0dp"
|
2022-09-07 14:55:39 -03:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/camera_preview_parent" />
|
2018-09-20 13:27:18 -07:00
|
|
|
|
2021-09-02 17:04:43 -03:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|