1<?xml version="1.0" encoding="utf-8"?> 2<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 tools:context=".MainFragment"> 7 8 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 9 xmlns:app="http://schemas.android.com/apk/res-auto" 10 xmlns:tools="http://schemas.android.com/tools" 11 android:layout_width="match_parent" 12 android:layout_height="match_parent" 13 android:id="@+id/frameLayoutMain" 14 tools:context=".MainActivity"> 15 <Button 16 android:id="@+id/cbs" 17 android:layout_width="222dp" 18 android:layout_height="51dp" 19 android:text="CBS" 20 app:layout_constraintBottom_toBottomOf="parent" 21 app:layout_constraintEnd_toEndOf="parent" 22 app:layout_constraintHorizontal_bias="0.493" 23 app:layout_constraintStart_toStartOf="parent" 24 app:layout_constraintTop_toTopOf="parent" 25 app:layout_constraintVertical_bias="0.751" /> 26 <Button 27 android:id="@+id/latency" 28 android:layout_width="222dp" 29 android:layout_height="46dp" 30 android:text="PRIORITIZE LATENCY" 31 app:layout_constraintBottom_toTopOf="@+id/cbs" 32 app:layout_constraintEnd_toEndOf="parent" 33 app:layout_constraintHorizontal_bias="0.497" 34 app:layout_constraintStart_toStartOf="parent" 35 app:layout_constraintTop_toTopOf="parent" 36 app:layout_constraintVertical_bias="0.783" /> 37 <Button 38 android:id="@+id/bw" 39 android:layout_width="wrap_content" 40 android:layout_height="wrap_content" 41 android:text="PRIORITIZE BANDWIDTH" 42 app:layout_constraintBottom_toTopOf="@+id/latency" 43 app:layout_constraintEnd_toEndOf="parent" 44 app:layout_constraintHorizontal_bias="0.497" 45 app:layout_constraintStart_toStartOf="parent" 46 app:layout_constraintTop_toTopOf="parent" 47 app:layout_constraintVertical_bias="0.623" /> 48 </androidx.constraintlayout.widget.ConstraintLayout> 49 50</FrameLayout>