1<?xml version="1.0" encoding="utf-8"?> 2<ScrollView 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 8 <GridLayout 9 android:layout_width="match_parent" 10 android:layout_height="match_parent" 11 android:columnCount="3" 12 android:id="@+id/benchmark_list"> 13 14 <TextView android:text="Benchmark"/> 15 <TextView android:text="Mean (ms)"/> 16 <TextView android:text="Stdev (ms)"/> 17 18 </GridLayout> 19</ScrollView> 20