初步測試多畫面

This commit is contained in:
Barney
2022-08-01 14:11:31 +08:00
parent 735958bdb0
commit f26e095026
4 changed files with 134 additions and 12 deletions
+77 -3
View File
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
@@ -37,10 +38,83 @@
</LinearLayout>
<com.hisharp.gstreamer_player.GStreamerSurfaceView
android:id="@+id/surface_video"
<androidx.gridlayout.widget.GridLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal" />
android:layout_gravity="center"
app:columnCount="3"
app:rowCount="3">
<com.hisharp.gstreamer_player.GStreamerSurfaceView
android:id="@+id/surface_video1"
android:layout_width="135dp"
android:layout_height="wrap_content"
android:layout_marginEnd="1dp"
android:layout_marginBottom="1dp" />
<com.hisharp.gstreamer_player.GStreamerSurfaceView
android:id="@+id/surface_video2"
android:layout_width="135dp"
android:layout_height="wrap_content"
android:layout_marginStart="1dp"
android:layout_marginEnd="1dp"
android:layout_marginBottom="1dp" />
<com.hisharp.gstreamer_player.GStreamerSurfaceView
android:id="@+id/surface_video3"
android:layout_width="135dp"
android:layout_height="wrap_content"
android:layout_marginStart="1dp"
android:layout_marginBottom="1dp" />
<com.hisharp.gstreamer_player.GStreamerSurfaceView
android:id="@+id/surface_video4"
android:layout_width="135dp"
android:layout_height="wrap_content"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginBottom="1dp" />
<com.hisharp.gstreamer_player.GStreamerSurfaceView
android:id="@+id/surface_video5"
android:layout_width="135dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="1dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginBottom="1dp" />
<com.hisharp.gstreamer_player.GStreamerSurfaceView
android:id="@+id/surface_video6"
android:layout_width="135dp"
android:layout_height="wrap_content"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginBottom="1dp" />
<com.hisharp.gstreamer_player.GStreamerSurfaceView
android:id="@+id/surface_video7"
android:layout_width="135dp"
android:layout_height="wrap_content"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp" />
<com.hisharp.gstreamer_player.GStreamerSurfaceView
android:id="@+id/surface_video8"
android:layout_width="135dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="1dp"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp" />
<com.hisharp.gstreamer_player.GStreamerSurfaceView
android:id="@+id/surface_video9"
android:layout_width="135dp"
android:layout_height="wrap_content"
android:layout_marginStart="1dp"
android:layout_marginTop="1dp" />
</androidx.gridlayout.widget.GridLayout>
</LinearLayout>