• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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  <FrameLayout
8      android:layout_width="match_parent"
9      android:layout_height="match_parent"
10      android:id="@+id/frameLayoutBW">
11<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
12    xmlns:app="http://schemas.android.com/apk/res-auto"
13    xmlns:tools="http://schemas.android.com/tools"
14    android:id="@+id/frameLayout2"
15    android:layout_width="match_parent"
16    android:layout_height="match_parent"
17    tools:context=".PrioritizeBandwidth">
18  <TextView
19      android:id="@+id/textView2"
20      android:layout_width="371dp"
21      android:layout_height="52dp"
22      android:text="Prioritize Bandwidth"
23      tools:layout_editor_absoluteX="20dp"
24      tools:layout_editor_absoluteY="4dp" />
25  <Button
26      android:id="@+id/releasebw"
27      android:layout_width="wrap_content"
28      android:layout_height="wrap_content"
29      android:layout_marginBottom="64dp"
30      android:text="Release Network"
31      app:layout_constraintBottom_toTopOf="@+id/requestbw"
32      app:layout_constraintEnd_toEndOf="parent"
33      app:layout_constraintStart_toStartOf="parent"
34      app:layout_constraintTop_toBottomOf="@+id/textView2"
35      app:layout_constraintVertical_bias="0.919" />
36  <Button
37      android:id="@+id/pingbw"
38      android:layout_width="182dp"
39      android:layout_height="42dp"
40      android:layout_marginBottom="228dp"
41      android:text="Ping"
42      app:layout_constraintBottom_toBottomOf="parent"
43      app:layout_constraintEnd_toEndOf="parent"
44      app:layout_constraintHorizontal_bias="0.493"
45      app:layout_constraintStart_toStartOf="parent" />
46  <Button
47      android:id="@+id/requestbw"
48      android:layout_width="wrap_content"
49      android:layout_height="wrap_content"
50      android:layout_marginTop="308dp"
51      android:text="RequestNetwork"
52      app:layout_constraintBottom_toTopOf="@+id/pingbw"
53      app:layout_constraintEnd_toEndOf="parent"
54      app:layout_constraintHorizontal_bias="0.495"
55      app:layout_constraintStart_toStartOf="parent"
56      app:layout_constraintTop_toTopOf="parent"
57      app:layout_constraintVertical_bias="0.314" />
58</androidx.constraintlayout.widget.ConstraintLayout>
59  </FrameLayout>
60</RelativeLayout>