GstreamerLib/app/src/main/res/layout/activity_main.xml
2022-08-01 14:11:31 +08:00

121 lines
4.6 KiB
XML

<?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"
android:orientation="vertical" >
<TextView
android:id="@+id/textview_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dip"
android:gravity="center_horizontal" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dip"
android:gravity="center_horizontal"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/button_play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/button_play"
android:src="@android:drawable/ic_media_play"
android:text="@string/button_play" />
<ImageButton
android:id="@+id/button_stop"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/button_stop"
android:src="@android:drawable/ic_media_pause"
android:text="@string/button_stop" />
</LinearLayout>
<androidx.gridlayout.widget.GridLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
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>