1<?xml version="1.0" encoding="utf-8"?> 2<androidx.constraintlayout.widget.ConstraintLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:app="http://schemas.android.com/apk/res-auto" 5 xmlns:tools="http://schemas.android.com/tools" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" 8 android:background="@color/black" 9 tools:context=".ui.main.TestConfigFragment"> 10 11 <ScrollView 12 android:layout_width="match_parent" 13 android:layout_height="0dp" 14 android:layout_marginBottom="8dp" 15 android:scrollbarStyle="outsideInset" 16 app:layout_constraintBottom_toTopOf="@id/layout_buttons" 17 app:layout_constraintEnd_toEndOf="parent" 18 app:layout_constraintStart_toStartOf="parent" 19 app:layout_constraintTop_toTopOf="parent"> 20 21 <LinearLayout 22 android:layout_width="match_parent" 23 android:layout_height="wrap_content" 24 android:orientation="vertical"> 25 26 <TextView 27 android:layout_width="match_parent" 28 android:layout_height="wrap_content" 29 android:text="@string/request_app_type" /> 30 31 <EditText 32 android:id="@+id/editAppType" 33 android:layout_width="match_parent" 34 android:layout_height="wrap_content" 35 android:ems="10" 36 android:inputType="numberSigned" /> 37 38 <TextView 39 android:layout_width="match_parent" 40 android:layout_height="wrap_content" 41 android:text="@string/request_naf_url" /> 42 43 <EditText 44 android:id="@+id/editUrl" 45 android:layout_width="match_parent" 46 android:layout_height="wrap_content" 47 android:ems="10" 48 android:inputType="textUri" /> 49 50 <TextView 51 android:layout_width="match_parent" 52 android:layout_height="wrap_content" 53 android:text="@string/request_org" /> 54 55 <EditText 56 android:id="@+id/editOrg" 57 android:layout_width="match_parent" 58 android:layout_height="wrap_content" 59 android:ems="10" 60 android:inputType="numberSigned" /> 61 62 <TextView 63 android:layout_width="match_parent" 64 android:layout_height="wrap_content" 65 android:text="@string/request_security_protocol" /> 66 67 <EditText 68 android:id="@+id/editSpId" 69 android:layout_width="match_parent" 70 android:layout_height="wrap_content" 71 android:ems="10" 72 android:inputType="numberSigned" /> 73 74 <TextView 75 android:layout_width="match_parent" 76 android:layout_height="wrap_content" 77 android:text="@string/request_tls_cipher_suite" /> 78 79 <EditText 80 android:id="@+id/editTlsCs" 81 android:layout_width="match_parent" 82 android:layout_height="wrap_content" 83 android:ems="10" 84 android:inputType="numberSigned" /> 85 86 <CheckBox 87 android:id="@+id/checkBoxForce" 88 android:layout_width="match_parent" 89 android:layout_height="wrap_content" 90 android:text="@string/request_force_bootstrapping" /> 91 92 </LinearLayout> 93 </ScrollView> 94 95 <LinearLayout 96 android:id="@+id/layout_buttons" 97 android:layout_width="match_parent" 98 android:layout_height="wrap_content" 99 android:layout_alignParentBottom="false" 100 android:layout_gravity="bottom" 101 android:orientation="vertical" 102 app:layout_constraintBottom_toBottomOf="parent"> 103 104 <Button 105 android:id="@+id/client_config_clear" 106 android:layout_width="match_parent" 107 android:layout_height="wrap_content" 108 android:text="@string/button_name_clear" /> 109 110 <Button 111 android:id="@+id/client_config_done" 112 android:layout_width="match_parent" 113 android:layout_height="wrap_content" 114 android:text="@string/button_name_done" /> 115 </LinearLayout> 116 117</androidx.constraintlayout.widget.ConstraintLayout> 118