18 lines
617 B
XML
18 lines
617 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<!-- 底层:CameraX 预览 -->
|
|
<androidx.camera.view.PreviewView
|
|
android:id="@+id/previewView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<!-- 上层:GameActivity 的容器 -->
|
|
<FrameLayout
|
|
android:id="@+id/gameActivityContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</FrameLayout> |