xref: /aosp_15_r20/external/skia/platform_tools/android/apps/skqp/src/main/res/layout/activity_main.xml (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout 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="org.skia.skqp.MainActivity">
8
9    <LinearLayout
10        android:layout_width="368dp"
11        android:layout_height="495dp"
12        android:orientation="vertical"
13        tools:layout_editor_absoluteX="8dp"
14        tools:layout_editor_absoluteY="8dp">
15
16        <TextView
17            android:id="@+id/textView2"
18            android:layout_width="match_parent"
19            android:layout_height="wrap_content"
20            android:layout_weight="1"
21            android:text="Nothing to see here !"/>
22
23        <Button
24            android:id="@+id/button_start"
25            android:layout_width="match_parent"
26            android:layout_height="wrap_content"
27            android:layout_weight="1"
28            android:keyboardNavigationCluster="false"
29            android:onClick="startTests"
30            android:text="Start Tests !" />
31    </LinearLayout>
32</RelativeLayout>
33