blob: b42da695e87b2f3f2fe7641b9b0c970ece1b7afd [file] [log] [blame]
Jorge Betancourt265e3e12021-04-08 15:27:13 -04001<?xml version="1.0" encoding="utf-8"?>
2<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto"
4 xmlns:tools="http://schemas.android.com/tools"
5 android:layout_width="match_parent"
6 android:layout_height="match_parent"
7 tools:context=".MainActivity">
8
9 <TextView
10 android:id="@+id/text"
11 android:layout_width="wrap_content"
12 android:layout_height="wrap_content"
13 android:text="Hello World!"
14 app:layout_constraintLeft_toLeftOf="parent"
15 app:layout_constraintRight_toRightOf="parent"
16 app:layout_constraintTop_toTopOf="parent" />
17 <ImageView
18 android:id="@+id/image"
Florin Malita934c0212021-05-20 12:23:42 -040019 android:layout_width="400px"
20 android:layout_height="400px"
Jorge Betancourt265e3e12021-04-08 15:27:13 -040021 app:layout_constraintLeft_toLeftOf="parent"
22 app:layout_constraintTop_toTopOf="parent">
Jorge Betancourt265e3e12021-04-08 15:27:13 -040023 </ImageView>
Jorge Betancourtf102b882021-04-26 13:48:56 -040024 <SurfaceView
25 android:id="@+id/surface"
26 android:layout_width="200px"
27 android:layout_height="200px"
28 app:layout_constraintLeft_toLeftOf="parent"
Jorge Betancourt6d970c62021-04-26 17:03:23 -040029 app:layout_constraintTop_toBottomOf="@+id/image">
Jorge Betancourtf102b882021-04-26 13:48:56 -040030 </SurfaceView>
Jorge Betancourt6d970c62021-04-26 17:03:23 -040031 <org.skia.androidkitdemo1.NavigationSpinner
32 android:layout_width="match_parent"
33 android:layout_height="wrap_content"
34 app:layout_constraintBottom_toBottomOf="parent">
35 </org.skia.androidkitdemo1.NavigationSpinner>
Jorge Betancourt265e3e12021-04-08 15:27:13 -040036
37</android.support.constraint.ConstraintLayout>