blob: 4b156aff8a13b31f2282e519f63b1a6b79648ebe [file] [log] [blame]
Yin-Chia Yeh5855ea62014-07-28 12:22:41 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (C) 2014 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
Yin-Chia Yeh538a5322018-08-07 09:25:05 -070018<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
Yin-Chia Yeh5855ea62014-07-28 12:22:41 -070019 android:layout_width="match_parent"
Yin-Chia Yeh538a5322018-08-07 09:25:05 -070020 android:layout_height="match_parent"
21 android:columnCount="3">
Yin-Chia Yeh5855ea62014-07-28 12:22:41 -070022
Yin-Chia Yeh538a5322018-08-07 09:25:05 -070023 <!-- Using relative width/height below.
24 Image might not have correct aspect ratio -->
25 <!-- Row 0 -->
Yin-Chia Yeh5855ea62014-07-28 12:22:41 -070026 <TextureView
27 android:id="@+id/texture_view_1"
Yin-Chia Yeh538a5322018-08-07 09:25:05 -070028 android:layout_columnWeight="1"
29 android:layout_rowWeight="1"
30 android:layout_width="0dp"
31 android:layout_height="0dp"/>
Yin-Chia Yeh5855ea62014-07-28 12:22:41 -070032 <TextureView
33 android:id="@+id/texture_view_2"
Yin-Chia Yeh538a5322018-08-07 09:25:05 -070034 android:layout_columnWeight="1"
35 android:layout_rowWeight="1"
36 android:layout_width="0dp"
37 android:layout_height="0dp"/>
Emilian Peev70688a92017-10-27 15:36:24 +010038 <TextureView
39 android:id="@+id/texture_view_3"
Yin-Chia Yeh538a5322018-08-07 09:25:05 -070040 android:layout_columnWeight="1"
41 android:layout_rowWeight="1"
42 android:layout_width="0dp"
43 android:layout_height="0dp"/>
44
45 <!-- Row 1 -->
Emilian Peev70688a92017-10-27 15:36:24 +010046 <TextureView
47 android:id="@+id/texture_view_4"
Yin-Chia Yeh538a5322018-08-07 09:25:05 -070048 android:layout_columnWeight="1"
49 android:layout_rowWeight="1"
50 android:layout_width="0dp"
51 android:layout_height="0dp"/>
Emilian Peev70688a92017-10-27 15:36:24 +010052 <TextureView
53 android:id="@+id/texture_view_5"
Yin-Chia Yeh538a5322018-08-07 09:25:05 -070054 android:layout_columnWeight="1"
55 android:layout_rowWeight="1"
56 android:layout_width="0dp"
57 android:layout_height="0dp"/>
58 <!-- space filler -->
59 <Space
60 android:layout_columnSpan="1"
61 android:layout_columnWeight="1"
62 android:layout_rowWeight="1"
63 android:layout_width="0dp"
64 android:layout_height="0dp"/>
65
66 <!-- Row 2 -->
Yin-Chia Yeh5855ea62014-07-28 12:22:41 -070067 <SurfaceView
68 android:id="@+id/surface_view_1"
Yin-Chia Yeh538a5322018-08-07 09:25:05 -070069 android:layout_columnWeight="1"
70 android:layout_rowWeight="1"
71 android:layout_width="0dp"
72 android:layout_height="0dp"/>
Yin-Chia Yeh5855ea62014-07-28 12:22:41 -070073
74 <SurfaceView
75 android:id="@+id/surface_view_2"
Yin-Chia Yeh538a5322018-08-07 09:25:05 -070076 android:layout_columnWeight="1"
77 android:layout_rowWeight="1"
78 android:layout_width="0dp"
79 android:layout_height="0dp"/>
80</GridLayout>